File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
ProjectVG.Application/Services/Chat Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,6 @@ public async Task<ChatRequestResult> EnqueueChatRequestAsync(ChatRequestCommand
7070
7171 var preprocessContext = await PrepareChatRequestAsync ( command ) ;
7272
73- LogChatRequestCommand ( command ) ;
74-
7573 _ = Task . Run ( async ( ) => {
7674 await ProcessChatRequestInternalAsync ( preprocessContext ) . ConfigureAwait ( false ) ;
7775 } ) ;
@@ -123,20 +121,10 @@ private async Task ProcessChatRequestInternalAsync(ChatProcessContext context)
123121 await failureHandler . HandleAsync ( context ) . ConfigureAwait ( false ) ;
124122 }
125123 finally {
126- LogChatProcessContext ( context ) ;
127124 _metricsService . EndChatMetrics ( ) ;
128125 _metricsService . LogChatMetrics ( ) ;
129126 }
130127 }
131128
132- private void LogChatRequestCommand ( ChatRequestCommand command )
133- {
134- _logger . LogInformation ( "Starting chat process: {CommandInfo}" , command . ToDebugString ( ) ) ;
135- }
136-
137- private void LogChatProcessContext ( ChatProcessContext context )
138- {
139- _logger . LogInformation ( "Chat process completed: {ContextInfo}" , context . ToDebugString ( ) ) ;
140- }
141129 }
142130}
You can’t perform that action at this time.
0 commit comments