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

Unified Diff: remoting/host/clipboard_win.cc

Issue 10835024: [Chromoting] Make some logging levels in ClipboardWin more appropriate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/clipboard_win.cc
diff --git a/remoting/host/clipboard_win.cc b/remoting/host/clipboard_win.cc
index 8d0938f32eb791d311fe16f3b2eeab7666f6b824..7549f12040131a1215d03c81415cb1d459d444a5 100644
--- a/remoting/host/clipboard_win.cc
+++ b/remoting/host/clipboard_win.cc
@@ -160,7 +160,7 @@ void ClipboardWin::Start(
}
if (!RegisterWindowClass()) {
- LOG(FATAL) << "Couldn't register clipboard window class.";
+ LOG(ERROR) << "Couldn't register clipboard window class.";
return;
}
hwnd_ = ::CreateWindow(kWindowClassName,
@@ -171,7 +171,7 @@ void ClipboardWin::Start(
base::GetModuleFromAddress(&WndProc),
this);
if (!hwnd_) {
- LOG(FATAL) << "Couldn't create clipboard window.";
+ LOG(ERROR) << "Couldn't create clipboard window.";
return;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698