Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ktrz committed Mar 27, 2024
1 parent ee3d6fb commit 24e5892
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ async function capture(cmd: string, args: string[]): Promise<ExecResult> {
}

export function getServerUrlObj(repositoryUrl: string | undefined): URL {
core.warning(`getServerUrlObj ${repositoryUrl}`);
const urlValue =
repositoryUrl && repositoryUrl.trim().length > 0
? repositoryUrl
Expand Down
2 changes: 1 addition & 1 deletion src/write.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ function buildAlertComment(

async function leaveComment(commitId: string, body: string, commentId: string, token: string) {
try {
core.debug('Sending comment:\n' + body);
core.warning('Sending comment:\n' + body);
core.warning('Boo');

const repoMetadata = getCurrentRepoMetadata();
Expand Down

0 comments on commit 24e5892

Please sign in to comment.