Skip to content

Commit 5a3a612

Browse files
committedJan 1, 2021
feat: Add extra logging for root container creation.
1 parent f7825be commit 5a3a612

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/init/RootContainerInitializer.ts

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export class RootContainerInitializer extends Initializer {
3838
*/
3939
protected async hasRootContainer(): Promise<boolean> {
4040
try {
41+
this.logger.debug(`Checking for root container at ${this.baseId.path}`);
4142
const result = await this.store.getRepresentation(this.baseId, {});
4243
this.logger.debug(`Existing root container found at ${this.baseId.path}`);
4344
result.data.destroy();

0 commit comments

Comments
 (0)
Please sign in to comment.