Changed note to notify #4745

This commit is contained in:
Jerry (Xinyu Hou) 2015-06-01 14:46:08 -07:00
parent d3a4ce1f11
commit 5006adedfe
6 changed files with 20 additions and 20 deletions

View File

@ -187,7 +187,7 @@ MSWindowsClientTaskBarReceiver::runMenu(int x, int y)
break; break;
case IDC_TASKBAR_LOG_LEVEL_NOTE: case IDC_TASKBAR_LOG_LEVEL_NOTE:
CLOG->setFilter(kNOTE); CLOG->setFilter(kNOTIFY);
break; break;
case IDC_TASKBAR_LOG_LEVEL_INFO: case IDC_TASKBAR_LOG_LEVEL_INFO:

View File

@ -204,7 +204,7 @@ MSWindowsPortableTaskBarReceiver::runMenu(int x, int y)
break; break;
case IDC_TASKBAR_LOG_LEVEL_NOTE: case IDC_TASKBAR_LOG_LEVEL_NOTE:
CLOG->setFilter(kNOTE); CLOG->setFilter(kNOTIFY);
break; break;
case IDC_TASKBAR_LOG_LEVEL_INFO: case IDC_TASKBAR_LOG_LEVEL_INFO:

View File

@ -218,7 +218,7 @@ MSWindowsServerTaskBarReceiver::runMenu(int x, int y)
break; break;
case IDC_TASKBAR_LOG_LEVEL_NOTE: case IDC_TASKBAR_LOG_LEVEL_NOTE:
CLOG->setFilter(kNOTE); CLOG->setFilter(kNOTIFY);
break; break;
case IDC_TASKBAR_LOG_LEVEL_INFO: case IDC_TASKBAR_LOG_LEVEL_INFO:

View File

@ -27,7 +27,7 @@ enum ELevel {
kFATAL, //!< For fatal errors kFATAL, //!< For fatal errors
kERROR, //!< For serious errors kERROR, //!< For serious errors
kWARNING, //!< For minor errors and warnings kWARNING, //!< For minor errors and warnings
kNOTE, //!< For messages about notable events kNOTIFY, //!< For messages about notable events
kINFO, //!< For informational messages kINFO, //!< For informational messages
kDEBUG, //!< For important debugging messages kDEBUG, //!< For important debugging messages
kDEBUG1, //!< For verbosity +1 debugging messages kDEBUG1, //!< For verbosity +1 debugging messages

View File

@ -203,7 +203,7 @@ otherwise it expands to a call that doesn't.
#define CLOG_CRIT CLOG_TRACE "%z\060" // char is '0' #define CLOG_CRIT CLOG_TRACE "%z\060" // char is '0'
#define CLOG_ERR CLOG_TRACE "%z\061" #define CLOG_ERR CLOG_TRACE "%z\061"
#define CLOG_WARN CLOG_TRACE "%z\062" #define CLOG_WARN CLOG_TRACE "%z\062"
#define CLOG_NOTE CLOG_TRACE "%z\063" #define CLOG_NOTIFY CLOG_TRACE "%z\063"
#define CLOG_INFO CLOG_TRACE "%z\064" #define CLOG_INFO CLOG_TRACE "%z\064"
#define CLOG_DEBUG CLOG_TRACE "%z\065" #define CLOG_DEBUG CLOG_TRACE "%z\065"
#define CLOG_DEBUG1 CLOG_TRACE "%z\066" #define CLOG_DEBUG1 CLOG_TRACE "%z\066"

View File

@ -57,9 +57,9 @@ TEST(IpcLogOutputterTests, write_threadingEnabled_bufferIsSent)
EXPECT_CALL(mockServer, send(IpcLogLineMessageEq("mock 2\n"), _)).Times(1); EXPECT_CALL(mockServer, send(IpcLogLineMessageEq("mock 2\n"), _)).Times(1);
IpcLogOutputter outputter(mockServer, true); IpcLogOutputter outputter(mockServer, true);
outputter.write(kNOTE, "mock 1"); outputter.write(kNOTIFY, "mock 1");
mockServer.waitForSend(); mockServer.waitForSend();
outputter.write(kNOTE, "mock 2"); outputter.write(kNOTIFY, "mock 2");
mockServer.waitForSend(); mockServer.waitForSend();
} }
@ -76,9 +76,9 @@ TEST(IpcLogOutputterTests, write_overBufferMaxSize_firstLineTruncated)
outputter.bufferMaxSize(2); outputter.bufferMaxSize(2);
// log more lines than the buffer can contain // log more lines than the buffer can contain
outputter.write(kNOTE, "mock 1"); outputter.write(kNOTIFY, "mock 1");
outputter.write(kNOTE, "mock 2"); outputter.write(kNOTIFY, "mock 2");
outputter.write(kNOTE, "mock 3"); outputter.write(kNOTIFY, "mock 3");
outputter.sendBuffer(); outputter.sendBuffer();
} }
@ -95,8 +95,8 @@ TEST(IpcLogOutputterTests, write_underBufferMaxSize_allLinesAreSent)
outputter.bufferMaxSize(2); outputter.bufferMaxSize(2);
// log more lines than the buffer can contain // log more lines than the buffer can contain
outputter.write(kNOTE, "mock 1"); outputter.write(kNOTIFY, "mock 1");
outputter.write(kNOTE, "mock 2"); outputter.write(kNOTIFY, "mock 2");
outputter.sendBuffer(); outputter.sendBuffer();
} }
@ -114,8 +114,8 @@ TEST(IpcLogOutputterTests, write_overBufferRateLimit_lastLineTruncated)
outputter.bufferRateLimit(1, 0.001); // 1ms outputter.bufferRateLimit(1, 0.001); // 1ms
// log 1 more line than the buffer can accept in time limit. // log 1 more line than the buffer can accept in time limit.
outputter.write(kNOTE, "mock 1"); outputter.write(kNOTIFY, "mock 1");
outputter.write(kNOTE, "mock 2"); outputter.write(kNOTIFY, "mock 2");
outputter.sendBuffer(); outputter.sendBuffer();
// after waiting the time limit send another to make sure // after waiting the time limit send another to make sure
@ -123,8 +123,8 @@ TEST(IpcLogOutputterTests, write_overBufferRateLimit_lastLineTruncated)
// HACK: sleep causes the unit test to fail intermittently, // HACK: sleep causes the unit test to fail intermittently,
// so lets try 100ms (there must be a better way to solve this) // so lets try 100ms (there must be a better way to solve this)
ARCH->sleep(0.1); // 100ms ARCH->sleep(0.1); // 100ms
outputter.write(kNOTE, "mock 3"); outputter.write(kNOTIFY, "mock 3");
outputter.write(kNOTE, "mock 4"); outputter.write(kNOTIFY, "mock 4");
outputter.sendBuffer(); outputter.sendBuffer();
} }
@ -142,14 +142,14 @@ TEST(IpcLogOutputterTests, write_underBufferRateLimit_allLinesAreSent)
outputter.bufferRateLimit(4, 1); // 1s (should be plenty of time) outputter.bufferRateLimit(4, 1); // 1s (should be plenty of time)
// log 1 more line than the buffer can accept in time limit. // log 1 more line than the buffer can accept in time limit.
outputter.write(kNOTE, "mock 1"); outputter.write(kNOTIFY, "mock 1");
outputter.write(kNOTE, "mock 2"); outputter.write(kNOTIFY, "mock 2");
outputter.sendBuffer(); outputter.sendBuffer();
// after waiting the time limit send another to make sure // after waiting the time limit send another to make sure
// we can log after the time limit passes. // we can log after the time limit passes.
outputter.write(kNOTE, "mock 3"); outputter.write(kNOTIFY, "mock 3");
outputter.write(kNOTE, "mock 4"); outputter.write(kNOTIFY, "mock 4");
outputter.sendBuffer(); outputter.sendBuffer();
} }