repositories
/
e-mobility-charging-stations-simulator.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14ecae6
)
Fix extra whitespace in log messages prefix
author
Jérôme Benoit
<jerome.benoit@sap.com>
Mon, 23 Jan 2023 22:09:38 +0000
(23:09 +0100)
committer
Jérôme Benoit
<jerome.benoit@sap.com>
Mon, 23 Jan 2023 22:09:38 +0000
(23:09 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/utils/Utils.ts
patch
|
blob
|
blame
|
history
diff --git
a/src/utils/Utils.ts
b/src/utils/Utils.ts
index f6fe0670e0397baf6a0ec785812d9d11c79dc68f..ca8f44af23d44ed91b15047428787edccdb0a9db 100644
(file)
--- a/
src/utils/Utils.ts
+++ b/
src/utils/Utils.ts
@@
-12,7
+12,7
@@
export default class Utils {
}
public static logPrefix(prefixString = ''): string {
- return `${new Date().toLocaleString()}
${prefixString}`;
+ return `${new Date().toLocaleString()}${prefixString}`;
}
public static generateUUID(): string {