Skip to content

Commit df04405

Browse files
committed
Fix my longest living pet peeve
1 parent 2fae0e5 commit df04405

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/sandbox/src/clients/base-client.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,7 @@ export abstract class BaseHttpClient {
205205
* Utility method to log successful operations
206206
*/
207207
protected logSuccess(operation: string, details?: string): void {
208-
this.logger.info(
209-
`${operation} completed successfully`,
210-
details ? { details } : undefined
211-
);
208+
this.logger.info(operation, details ? { details } : undefined);
212209
}
213210

214211
/**

0 commit comments

Comments
 (0)