diff --git a/src/services/wikiGitWorkspace/index.ts b/src/services/wikiGitWorkspace/index.ts index 8c546809..47244ae9 100644 --- a/src/services/wikiGitWorkspace/index.ts +++ b/src/services/wikiGitWorkspace/index.ts @@ -32,7 +32,7 @@ export class WikiGitWorkspace implements IWikiGitWorkspaceService { const isSyncedWiki = storageService !== SupportedStorageServices.local; try { if (await hasGit(wikiFolderLocation)) { - logger.warn('Skip git init because it already has a git setup.'); + logger.warn('Skip git init because it already has a git setup.', { wikiFolderLocation }); } else { if (isSyncedWiki) { if (typeof gitUrl === 'string' && userInfo !== undefined) {