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

Side by Side Diff: base/mac/mac_logging.cc

Issue 9235084: Add OSSTATUS_LOG API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/mac/mac_logging.h"
6
7 #include <CoreServices/CoreServices.h>
8
9 #include <iomanip>
10
11 namespace logging {
12
13 OSStatusLogMessage::OSStatusLogMessage(const char* file_path,
14 int line,
15 LogSeverity severity,
16 OSStatus status)
17 : LogMessage(file_path, line, severity),
18 status_(status) {
19 }
20
21 OSStatusLogMessage::~OSStatusLogMessage() {
22 stream() << ": "
23 << GetMacOSStatusErrorString(status_)
24 << " ("
25 << status_
26 << ")";
27 }
28
29 } // namespace logging
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698