@@ -5,7 +5,7 @@ import {getCurrentBranch, getGitHubContext, GitHubRepoContext} from "../git/repo
55import { CurrentBranchRepoNode } from "./current-branch/currentBranchRepoNode" ;
66
77import { NoRunForBranchNode } from "./current-branch/noRunForBranchNode" ;
8- import { log , logDebug , logTrace } from "../log" ;
8+ import { logDebug , logTrace , logWarn } from "../log" ;
99import { RunStore } from "../store/store" ;
1010import { AttemptNode } from "./shared/attemptNode" ;
1111import { GitHubAPIUnreachableNode } from "./shared/gitHubApiUnreachableNode" ;
@@ -67,7 +67,7 @@ export class CurrentBranchTreeProvider
6767 const repoContext = gitHubContext . repos [ 0 ] ;
6868 const currentBranch = getCurrentBranch ( repoContext . repositoryState ) ;
6969 if ( ! currentBranch ) {
70- log ( `Could not find current branch for ${ repoContext . name } ` ) ;
70+ logWarn ( `Could not find current branch for ${ repoContext . name } ` ) ;
7171 return [ ] ;
7272 }
7373
@@ -79,7 +79,7 @@ export class CurrentBranchTreeProvider
7979 . map ( ( repoContext ) : CurrentBranchRepoNode | undefined => {
8080 const currentBranch = getCurrentBranch ( repoContext . repositoryState ) ;
8181 if ( ! currentBranch ) {
82- log ( `Could not find current branch for ${ repoContext . name } ` ) ;
82+ logWarn ( `Could not find current branch for ${ repoContext . name } ` ) ;
8383 return undefined ;
8484 }
8585
@@ -103,7 +103,7 @@ export class CurrentBranchTreeProvider
103103 }
104104
105105 private async getRuns ( gitHubRepoContext : GitHubRepoContext , currentBranchName : string ) : Promise < WorkflowRunNode [ ] > {
106- logDebug ( " Getting workflow runs for branch" ) ;
106+ logDebug ( ` Getting current branch ( ${ currentBranchName } ) runs in repo ${ gitHubRepoContext . name } ` ) ;
107107
108108 const result = await gitHubRepoContext . client . actions . listWorkflowRunsForRepo ( {
109109 owner : gitHubRepoContext . owner ,
0 commit comments