Log "Unexpected course block type" as info, not error

This commit is contained in:
stvn
2020-09-30 13:31:29 -07:00
parent 42715d3de2
commit 684be8c0cf
2 changed files with 10 additions and 4 deletions

View File

@@ -1,6 +1,9 @@
import { camelCaseObject, getConfig } from '@edx/frontend-platform';
import { getAuthenticatedHttpClient } from '@edx/frontend-platform/auth';
import { logError } from '@edx/frontend-platform/logging';
import {
logError,
logInfo,
} from '@edx/frontend-platform/logging';
function normalizeCourseHomeCourseMetadata(metadata) {
const data = camelCaseObject(metadata);
@@ -53,7 +56,7 @@ export function normalizeOutlineBlocks(courseId, blocks) {
break;
default:
logError(`Unexpected course block type: ${block.type} with ID ${block.id}. Expected block types are course, chapter, and sequential.`);
logInfo(`Unexpected course block type: ${block.type} with ID ${block.id}. Expected block types are course, chapter, and sequential.`);
}
});

View File

@@ -1,6 +1,9 @@
import { getConfig, camelCaseObject } from '@edx/frontend-platform';
import { getAuthenticatedHttpClient, getAuthenticatedUser } from '@edx/frontend-platform/auth';
import { logError } from '@edx/frontend-platform/logging';
import {
logError,
logInfo,
} from '@edx/frontend-platform/logging';
export function normalizeBlocks(courseId, blocks) {
const models = {
@@ -43,7 +46,7 @@ export function normalizeBlocks(courseId, blocks) {
};
break;
default:
logError(`Unexpected course block type: ${block.type} with ID ${block.id}. Expected block types are course, chapter, sequential, and vertical.`);
logInfo(`Unexpected course block type: ${block.type} with ID ${block.id}. Expected block types are course, chapter, sequential, and vertical.`);
}
});