add info
This commit is contained in:
parent
66429527ca
commit
2398aab82b
|
@ -39,6 +39,7 @@ export async function importPosts(
|
||||||
try {
|
try {
|
||||||
const parsed = JSON.parse(json);
|
const parsed = JSON.parse(json);
|
||||||
if (parsed instanceof Array) {
|
if (parsed instanceof Array) {
|
||||||
|
logger.info("Parsing key style posts");
|
||||||
for (const post of JSON.parse(json)) {
|
for (const post of JSON.parse(json)) {
|
||||||
try {
|
try {
|
||||||
linenum++;
|
linenum++;
|
||||||
|
@ -78,7 +79,8 @@ export async function importPosts(
|
||||||
logger.warn(`Error in line:${linenum} ${e}`);
|
logger.warn(`Error in line:${linenum} ${e}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else if (parsed instanceof Object) {
|
||||||
|
logger.info("Parsing animal style posts");
|
||||||
for (const post of parsed.orderedItems) {
|
for (const post of parsed.orderedItems) {
|
||||||
try {
|
try {
|
||||||
linenum++;
|
linenum++;
|
||||||
|
@ -112,7 +114,6 @@ export async function importPosts(
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
logger.warn(`Error in line:${linenum} ${e}`);
|
logger.warn(`Error in line:${linenum} ${e}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in New Issue