Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 #ifndef BASE_CHROMEOS_LOGGING_H_ | |
| 6 #define BASE_CHROMEOS_LOGGING_H_ | |
| 7 | |
| 8 #include "base/logging.h" | |
| 9 | |
| 10 namespace logging { | |
| 11 | |
| 12 #if defined(OS_CHROMEOS) | |
| 13 | |
| 14 // These macros are used to log events on ChromeOS which we want to be included | |
| 15 // in the system log of the device. | |
| 16 #define CHROMEOS_SYSLOG(severity) LOG(severity) | |
|
Nico
2016/06/04 01:25:00
Do you need separate severities for syslog entries
Marton Hunyady
2016/06/06 08:28:54
I think it's better to separate the failures (e.g.
| |
| 17 #define CHROMEOS_SYSLOG_IF(severity, condition) LOG_IF(severity, condition) | |
| 18 | |
| 19 #else // Not defined(OS_CHROMEOS) | |
| 20 | |
| 21 #define CHROMEOS_SYSLOG(severity) LOG_IF(severity, false) | |
| 22 #define CHROMEOS_SYSLOG_IF(severity, condition) LOG_IF(severity, false) | |
| 23 | |
| 24 #endif // defined(OS_CHROMEOS) | |
| 25 | |
| 26 } // namespace logging | |
| 27 | |
| 28 #endif // BASE_CHROMEOS_LOGGING_H_ | |
| OLD | NEW |