Add a kTraceTerseInfo level for non-verbose logging.

Review URL: https://webrtc-codereview.appspot.com/937023

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3134 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org
2012-11-20 07:34:45 +00:00
parent 2009f6b236
commit 655d8f56f6
6 changed files with 30 additions and 13 deletions

View File

@ -72,7 +72,7 @@ TEST_F(LoggingTest, LogStream) {
level_ = kTraceWarning;
std::string msg = "Important message";
expected_log_ << "(logging_unittest.cc:" << __LINE__ + 1 << "): " << msg;
LOG(WARNING) << msg;
LOG(LS_WARNING) << msg;
cv_->SleepCS(*crit_.get());
}
}