diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-02 23:41:18 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-02 23:41:18 +0000 |
commit | 87c12c138dcccceab41a86ade83584521608006b (patch) | |
tree | c0d9c484474523c4dea8df4ca214b31a239d0ae0 | |
parent | 2ddd5f78156dd052590d88ce3ca870c12ba045d7 (diff) | |
download | chromium_src-87c12c138dcccceab41a86ade83584521608006b.zip chromium_src-87c12c138dcccceab41a86ade83584521608006b.tar.gz chromium_src-87c12c138dcccceab41a86ade83584521608006b.tar.bz2 |
Change LOG(WARNING) to LOG(INFO) in a couple places.
This prevents console spew when ctrl+c closing works gracefully.
Review URL: http://codereview.chromium.org/462013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33619 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/browser_main.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc index df391c1..17d2089 100644 --- a/chrome/browser/browser_main.cc +++ b/chrome/browser/browser_main.cc @@ -171,8 +171,8 @@ void SIGCHLDHandler(int signal) { // Common code between SIG{HUP, INT, TERM}Handler. void GracefulShutdownHandler(int signal, const int expected_signal) { DCHECK_EQ(signal, expected_signal); - LOG(WARNING) << "Addressing signal " << expected_signal << " on " - << PlatformThread::CurrentId(); + LOG(INFO) << "Addressing signal " << expected_signal << " on " + << PlatformThread::CurrentId(); bool posted = ChromeThread::PostTask( ChromeThread::UI, FROM_HERE, @@ -185,8 +185,8 @@ void GracefulShutdownHandler(int signal, const int expected_signal) { CHECK(sigaction(expected_signal, &action, NULL) == 0); if (posted) { - LOG(WARNING) << "Posted task to UI thread; resetting signal " - << expected_signal << " handler"; + LOG(INFO) << "Posted task to UI thread; resetting signal " + << expected_signal << " handler"; } else { // Without a UI thread to post the exit task to, there aren't many // options. Raise the signal again. The default handler will pick it up |