We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fae0e5 commit df04405Copy full SHA for df04405
packages/sandbox/src/clients/base-client.ts
@@ -205,10 +205,7 @@ export abstract class BaseHttpClient {
205
* Utility method to log successful operations
206
*/
207
protected logSuccess(operation: string, details?: string): void {
208
- this.logger.info(
209
- `${operation} completed successfully`,
210
- details ? { details } : undefined
211
- );
+ this.logger.info(operation, details ? { details } : undefined);
212
}
213
214
/**
0 commit comments