Skip to content

Commit 3c3e33d

Browse files
committed
Increase log visibility
1 parent ecfe1d3 commit 3c3e33d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/common/remote.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ async function resolveGitUrl(url: string, repository: Repository): Promise<strin
111111
for (const { prefix, replacement } of urlSubstitutions) {
112112
if (url.startsWith(prefix)) {
113113
const resolvedUrl = replacement + url.substring(prefix.length);
114-
Logger.debug(`Resolved git URL alias: "${url}" -> "${resolvedUrl}"`, 'Remote');
114+
Logger.appendLine(`Resolved git URL alias: "${url}" -> "${resolvedUrl}"`, 'Remote');
115115
return resolvedUrl;
116116
}
117117
}
118118
} catch (error) {
119-
Logger.debug(`Failed to resolve git URL aliases for "${url}": ${error}`, 'Remote');
119+
Logger.error(`Failed to resolve git URL aliases for "${url}": ${error}`, 'Remote');
120120
}
121121

122122
// No substitution found or error occurred, return original URL

0 commit comments

Comments
 (0)