Skip to content

Commit

Permalink
UniLog: format
Browse files Browse the repository at this point in the history
  • Loading branch information
fchn289 committed Jan 19, 2024
1 parent cec4001 commit 8c4eb2c
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 @@ -19,7 +19,7 @@ using namespace std;
using namespace std::chrono;

// ***********************************************************************************************
#define BUF(content) __func__ << "()#" << __LINE__ << ' ' << content << endl
#define BUF(content) __FILE__ << ":" << __LINE__ << ": " << content << endl
#define DBG(content) { oneLog() << "DBG] " << BUF(content); }
#define INF(content) { oneLog() << "INF] " << BUF(content); }
#define WRN(content) { oneLog() << "WRN] " << BUF(content); }
Expand Down

0 comments on commit 8c4eb2c

Please sign in to comment.