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

Unified Diff: content/renderer/pepper/host_globals.cc

Issue 2646033003: DevTools: streamline console logging levels, migrate 'log' to 'info' level, 'debug' to 'verbose' le… (Closed)
Patch Set: missing rebaseline 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 | « content/public/common/console_message_level.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/host_globals.cc
diff --git a/content/renderer/pepper/host_globals.cc b/content/renderer/pepper/host_globals.cc
index 2b936428710da2f076f213568cbb36fd2b718620..e68ac91d8b4f7e8c7ecef988b2de113e4f912b13 100644
--- a/content/renderer/pepper/host_globals.cc
+++ b/content/renderer/pepper/host_globals.cc
@@ -57,9 +57,9 @@ void GetAllContainersForModule(PluginModule* module, ContainerSet* containers) {
WebConsoleMessage::Level LogLevelToWebLogLevel(PP_LogLevel level) {
switch (level) {
case PP_LOGLEVEL_TIP:
- return WebConsoleMessage::LevelDebug;
+ return WebConsoleMessage::LevelVerbose;
case PP_LOGLEVEL_LOG:
- return WebConsoleMessage::LevelLog;
+ return WebConsoleMessage::LevelInfo;
case PP_LOGLEVEL_WARNING:
return WebConsoleMessage::LevelWarning;
case PP_LOGLEVEL_ERROR:
« no previous file with comments | « content/public/common/console_message_level.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698