Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit df44140

Browse files
author
Stephen Gutekanst
committed
use logger
1 parent 7b4e6aa commit df44140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async function gitDefaultRemoteURL(repoDir: string): Promise<string> {
2828
throw new Error('no configured git remotes')
2929
}
3030
if (remotes.length > 1) {
31-
console.log('using first git remote:', remotes[0])
31+
log.appendLine(`using first git remote: ${remotes[0]}`)
3232
}
3333
return await gitRemoteURL(repoDir, remotes[0])
3434
}

0 commit comments

Comments
 (0)