forked from swiftlang/swift-corelibs-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCFLogUtilities.h
51 lines (39 loc) · 1.48 KB
/
CFLogUtilities.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
/* CFLogUtilities.h
Copyright (c) 2004 - 2015 Apple Inc. and the Swift project authors
*/
/*
APPLE SPI: NOT TO BE USED OUTSIDE APPLE!
*/
#if !defined(__COREFOUNDATION_CFLOGUTILITIES__)
#define __COREFOUNDATION_CFLOGUTILITIES__ 1
#include <CoreFoundation/CFBase.h>
#include <CoreFoundation/CFString.h>
CF_EXTERN_C_BEGIN
enum { // Legal level values for CFLog()
kCFLogLevelEmergency = 0,
kCFLogLevelAlert = 1,
kCFLogLevelCritical = 2,
kCFLogLevelError = 3,
kCFLogLevelWarning = 4,
kCFLogLevelNotice = 5,
kCFLogLevelInfo = 6,
kCFLogLevelDebug = 7,
};
CF_EXPORT void CFLog(int32_t level, CFStringRef format, ...);
/* Passing in a level value which is outside the range of 0-7 will cause the the call to do nothing.
CFLog() logs the message using the asl.h API, and uses the level parameter as the log level.
Note that the asl subsystem ignores some log levels by default.
CFLog() is not fast, and is not going to be guaranteed to be fast.
Even "no-op" CFLogs are not necessarily fast.
If you care about performance, you shouldn't be logging.
*/
CF_EXTERN_C_END
#endif /* ! __COREFOUNDATION_CFLOGUTILITIES__ */