Skip to content

Commit cc3f1b6

Browse files
committed
Update INFO and ERROR spacing
1 parent 99f8de3 commit cc3f1b6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/utils/testLogger.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* IBM Confidential
3-
* Copyright IBM Corp. 2023, 2026
3+
* Copyright IBM Corp. 2026
44
*/
55

66
'use strict';
@@ -22,14 +22,14 @@ class TestLogger {
2222
*/
2323
error(message: string, error?: any): void {
2424
// Just log the error message - Mocha will display the full error
25-
console.error(`[ERROR] ${message}`);
25+
console.error(` [ERROR] ${message}`);
2626
}
2727

2828
/**
2929
* Log an info message with special formatting
3030
*/
3131
info(message: string): void {
32-
console.log(`[INFO] ${message}`);
32+
console.log(` [INFO] ${message}`);
3333
}
3434

3535
/**

0 commit comments

Comments
 (0)