File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
packages/core/src/codewhispererChat/controllers/chat/messenger Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -316,15 +316,19 @@ export class Messenger {
316316 const input = toolUse . input as unknown as ExecuteBashParams
317317 if ( input . explanation ) {
318318 getLogger ( ) . debug (
319- `Tool explanation: ${ input . explanation } for executeBash toolUseId: ${ toolUse . toolUseId } `
319+ 'Tool explanation: %s for executeBash toolUseId: %s' ,
320+ input . explanation ,
321+ toolUse . toolUseId
320322 )
321323 explanation = input . explanation
322324 }
323325 } else if ( tool . type === ToolType . FsWrite ) {
324326 const input = toolUse . input as unknown as FsWriteParams
325327 if ( input . explanation ) {
326328 getLogger ( ) . debug (
327- `Tool explanation: ${ input . explanation } for fsWrite toolUseId: ${ toolUse . toolUseId } `
329+ 'Tool explanation: %s for fsWrite toolUseId: %s' ,
330+ input . explanation ,
331+ toolUse . toolUseId
328332 )
329333 explanation = input . explanation
330334 }
You can’t perform that action at this time.
0 commit comments