SWDEV-301667 - Logging refactor

- Remove newline from logging as log function internally inserts a new
line

Change-Id: I25eb2242a1f1e87cf811bcc373d1d485b2e027a8
This commit is contained in:
Saleel Kudchadker
2023-12-07 01:32:20 +00:00
parent 59a6a6c12e
commit 058b2702db
16 changed files with 77 additions and 78 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ const char* hiprtcGetErrorString(hiprtcResult x) {
case HIPRTC_ERROR_LINKING:
return "HIPRTC_ERROR_LINKING";
default:
LogPrintfError("Invalid HIPRTC error code: %d \n", x);
LogPrintfError("Invalid HIPRTC error code: %d", x);
return nullptr;
};