Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Unified Diff: remoting/base/logging.h

Issue 2661153003: Moving oauth code from host to base to allow code sharing between host and client. (Closed)
Patch Set: Correcting minor mistakes found in CL. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/base/gaia_oauth_client.cc ('k') | remoting/base/mock_oauth_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/logging.h
diff --git a/remoting/base/logging.h b/remoting/base/logging.h
index 47507568690221ef4b6c369b1d7ebe3f909b07e9..ceda9791a6f038bd7a8634fd2d2310960e3796be 100644
--- a/remoting/base/logging.h
+++ b/remoting/base/logging.h
@@ -9,11 +9,12 @@
namespace remoting {
-// Chromoting host code should use HOST_LOG instead of LOG(INFO) to bypass
-// the CheckSpamLogging presubmit check. This won't spam chrome output because
-// it runs in the chromoting host processes.
+// Chromoting host code should use CRD_LOG or HOST_LOG instead of LOG(INFO) to
+// bypass the CheckSpamLogging presubmit check. This won't spam chrome output
+// because it runs in the chromoting host processes.
// In the future we may also consider writing to a log file instead of the
// console.
+#define CRD_LOG LOG(INFO)
Sergey Ulanov 2017/02/02 01:55:30 HOST_LOG has clear purpose (messages that are logg
#define HOST_LOG LOG(INFO)
#define HOST_DLOG DLOG(INFO)
« no previous file with comments | « remoting/base/gaia_oauth_client.cc ('k') | remoting/base/mock_oauth_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698