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

Unified Diff: src/trusted/debug_stub/session.cc

Issue 11881048: Change debug stub log message verbosity level to 1. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 7 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 | « no previous file | tests/debug_stub/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/debug_stub/session.cc
===================================================================
--- src/trusted/debug_stub/session.cc (revision 10601)
+++ src/trusted/debug_stub/session.cc (working copy)
@@ -123,7 +123,7 @@
}
if (GetFlags() & DEBUG_SEND) {
- NaClLog(LOG_INFO, "TX %s\n", outstr.str().c_str());
+ NaClLog(1, "TX %s\n", outstr.str().c_str());
}
// Send XSUM as two nible 8bit value preceeded by '#'
@@ -187,7 +187,7 @@
NibbleToInt(ch, &val);
fin_xsum |= val;
- if (GetFlags() & DEBUG_RECV) NaClLog(LOG_INFO, "RX %s\n", in.c_str());
+ if (GetFlags() & DEBUG_RECV) NaClLog(1, "RX %s\n", in.c_str());
pkt->ParseSequence();
« no previous file with comments | « no previous file | tests/debug_stub/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698