summaryrefslogtreecommitdiffstats
path: root/base/logging.h
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-30 07:47:34 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-30 07:47:34 +0000
commitf48465c4f2346c961bf08140e90a7b4be978f573 (patch)
tree7ebbc13ba0a27176ed139177c92cab6842030ab7 /base/logging.h
parent8c3d836472137bc907e3346bbccd97ff29b547bb (diff)
downloadchromium_src-f48465c4f2346c961bf08140e90a7b4be978f573.zip
chromium_src-f48465c4f2346c961bf08140e90a7b4be978f573.tar.gz
chromium_src-f48465c4f2346c961bf08140e90a7b4be978f573.tar.bz2
Removed support for log prefix filters.
No one is using this, and this is obsoleted by --vmodule. BUG=56965 TEST=None Review URL: http://codereview.chromium.org/3596003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61035 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.h')
-rw-r--r--base/logging.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/base/logging.h b/base/logging.h
index 19b2232..0864ac6 100644
--- a/base/logging.h
+++ b/base/logging.h
@@ -220,11 +220,6 @@ template <size_t N>
int GetVlogLevel(const char (&file)[N]) {
return GetVlogLevelHelper(file, N);
}
-// Sets the log filter prefix. Any log message below LOG_ERROR severity that
-// doesn't start with this prefix with be silently ignored. The filter defaults
-// to NULL (everything is logged) if this function is not called. Messages
-// with severity of LOG_ERROR or higher will not be filtered.
-void SetLogFilterPrefix(const char* filter);
// Sets the common items you want to be prepended to each log message.
// process and thread IDs default to off, the timestamp defaults to on.