diff options
Diffstat (limited to 'chrome/browser/mac/relauncher.cc')
-rw-r--r-- | chrome/browser/mac/relauncher.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/mac/relauncher.cc b/chrome/browser/mac/relauncher.cc index 700f8da..138ab17 100644 --- a/chrome/browser/mac/relauncher.cc +++ b/chrome/browser/mac/relauncher.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -20,6 +20,7 @@ #include "base/eintr_wrapper.h" #include "base/file_util.h" #include "base/logging.h" +#include "base/mac/mac_logging.h" #include "base/mac/mac_util.h" #include "base/mac/scoped_cftyperef.h" #include "base/path_service.h" @@ -370,7 +371,7 @@ int RelauncherMain(const content::MainFunctionParams& main_parameters) { OSStatus status = LSOpenApplication(&ls_parameters, NULL); if (status != noErr) { - LOG(ERROR) << "LSOpenApplication: " << status; + OSSTATUS_LOG(ERROR, status) << "LSOpenApplication"; return 1; } |