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

Unified Diff: chromeos/network/network_event_log.cc

Issue 11299236: This moves the ONC parsing code into chromeos/network/onc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unit tests Created 8 years 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 | « chromeos/network/network_event_log.h ('k') | chromeos/network/network_event_log_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/network_event_log.cc
diff --git a/chromeos/network/network_event_log.cc b/chromeos/network/network_event_log.cc
index bf1669d01c3d8db287ad49a3fb1bae5a4382807a..3ed51442c55dd7fb0fdbe0920b794daa5a616637 100644
--- a/chromeos/network/network_event_log.cc
+++ b/chromeos/network/network_event_log.cc
@@ -43,7 +43,7 @@ LogEntry::LogEntry(const std::string& module,
std::string LogEntry::ToString() const {
std::string line;
line += "[" + UTF16ToUTF8(base::TimeFormatShortDateAndTime(time)) + "]";
- line += " " + module + "." + event;
+ line += " " + module + ":" + event;
if (!description.empty())
line += ": " + description;
if (count > 1)
« no previous file with comments | « chromeos/network/network_event_log.h ('k') | chromeos/network/network_event_log_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698