Skip to content

Commit 96ceb3e

Browse files
committed
Include remote spec name in error
1 parent 3ff1f67 commit 96ceb3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/projects/data/GitHubProjectDataSource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export default class GitHubProjectDataSource implements IProjectDataSource {
242242
password: this.encryptionService.decrypt(projectConfigRemoteSpec.auth.encryptedPassword)
243243
}
244244
} catch (error) {
245-
console.error(`Failed to decrypt remote specification auth for ${projectConfigRemoteSpec.url}. Perhaps a different public key was used?:`, error);
245+
console.info(`Failed to decrypt remote specification auth for ${projectConfigRemoteSpec.name} (${projectConfigRemoteSpec.url}). Perhaps a different public key was used?:`, error);
246246
return undefined
247247
}
248248
}

0 commit comments

Comments
 (0)