diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-23 00:49:46 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-23 00:49:46 +0000 |
commit | 802865bb461ac9eef86d8961e842edbb4c2a66f2 (patch) | |
tree | 2364f505bfa4f8cb3bd4e3a1abcba3549a61dbe7 /base/logging.cc | |
parent | c37b96fef3f5ccf7599aba147dfae0aecbef28a3 (diff) | |
download | chromium_src-802865bb461ac9eef86d8961e842edbb4c2a66f2.zip chromium_src-802865bb461ac9eef86d8961e842edbb4c2a66f2.tar.gz chromium_src-802865bb461ac9eef86d8961e842edbb4c2a66f2.tar.bz2 |
Print out filename on logs instead of the entire path
This probably regressed from a merge.
BUG=None
TEST=Manual
Review URL: http://codereview.chromium.org/5996004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70013 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.cc')
-rw-r--r-- | base/logging.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/logging.cc b/base/logging.cc index eac1319..0a8931a 100644 --- a/base/logging.cc +++ b/base/logging.cc @@ -592,7 +592,7 @@ void LogMessage::Init(const char* file, int line) { else stream_ << "VERBOSE" << -severity_; - stream_ << ":" << file << "(" << line << ")] "; + stream_ << ":" << filename << "(" << line << ")] "; message_start_ = stream_.tellp(); } |