Skip to content
Snippets Groups Projects
Unverified Commit 737064da authored by syuilo's avatar syuilo
Browse files

Better log

parent 606cc85f
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,13 @@ export async function createNote(value: any, resolver?: Resolver, silent = false
const object = await resolver.resolve(value) as any;
if (object == null || object.type !== 'Note') {
logger.error(`invalid note: ${object}`);
logger.error(`invalid note: ${value}`, {
resolver: {
history: resolver.getHistory()
},
value: value,
object: object
});
return null;
}
......
......@@ -13,6 +13,10 @@ export default class Resolver {
this.history = new Set();
}
public getHistory(): string[] {
return Array.from(this.history);
}
public async resolveCollection(value: any) {
const collection = typeof value === 'string'
? await this.resolve(value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment