File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
packages/amazonq/src/inlineChat/provider Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -111,20 +111,15 @@ export class InlineChatProvider {
111111
112112 const request = triggerPayloadToChatRequest ( triggerPayload )
113113 const session = this . sessionStorage . getSession ( tabID )
114- getLogger ( ) . info (
115- `request from tab: ${ tabID } conversationID: ${ session . sessionIdentifier } request: ${ JSON . stringify (
116- request
117- ) } `
118- )
114+ getLogger ( ) . info ( `request from tab: ${ tabID } conversationID: ${ session . sessionIdentifier } request: %O` , request )
119115
120116 let response : GenerateAssistantResponseCommandOutput | undefined = undefined
121117 session . createNewTokenSource ( )
122118 try {
123119 response = await session . chatSso ( request )
124120 getLogger ( ) . info (
125- `response to tab: ${ tabID } conversationID: ${ session . sessionIdentifier } requestID: ${ response . $metadata . requestId } metadata: ${ JSON . stringify (
126- response . $metadata
127- ) } `
121+ `response to tab: ${ tabID } conversationID: ${ session . sessionIdentifier } requestID: ${ response . $metadata . requestId } metadata: %O` ,
122+ response . $metadata
128123 )
129124 } catch ( e : any ) {
130125 this . processException ( e , tabID )
You can’t perform that action at this time.
0 commit comments