We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f8de3 commit cc3f1b6Copy full SHA for cc3f1b6
1 file changed
src/test/utils/testLogger.ts
@@ -1,6 +1,6 @@
1
/*
2
* IBM Confidential
3
- * Copyright IBM Corp. 2023, 2026
+ * Copyright IBM Corp. 2026
4
*/
5
6
'use strict';
@@ -22,14 +22,14 @@ class TestLogger {
22
23
error(message: string, error?: any): void {
24
// Just log the error message - Mocha will display the full error
25
- console.error(`[ERROR] ${message}`);
+ console.error(` [ERROR] ${message}`);
26
}
27
28
/**
29
* Log an info message with special formatting
30
31
info(message: string): void {
32
- console.log(`[INFO] ${message}`);
+ console.log(` [INFO] ${message}`);
33
34
35
0 commit comments