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
rodzic 59a6a6c12e
commit 058b2702db
16 zmienionych plików z 77 dodań i 78 usunięć
+1 -1
Wyświetl plik
@@ -104,7 +104,7 @@ public:
// Device ID Check to check if module is launched in the same device it was loaded.
inline void CheckDeviceIdMatch() const {
guarantee(device_id_ == ihipGetDevice(), "Device mismatch from where this module is loaded,"
"device_id: %d ihipGetDevice:%d \n", device_id_, ihipGetDevice());
"device_id: %d ihipGetDevice:%d", device_id_, ihipGetDevice());
}
private: