Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fchn289 committed Jul 30, 2024
1 parent 02f1971 commit afd1d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/log/UniBaseLog.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ using LogName = std::string;
// . under single thread, can change cout back to oneLog() for smart log
// - HID() is MT safe also upon UniSmartLog
#if WITH_HID_LOG
#define HID(content) { cout << "cout[" << timestamp() << "/HID] " << BUF(content) << dec; }
#define HID(content) { cout << "cout[" << timestamp() << "/HID] " << BUF(content) << std::dec; }
#else
#define HID(content) {}
#endif
Expand Down

0 comments on commit afd1d47

Please sign in to comment.