]> git.saurik.com Git - apple/system_cmds.git/blob - CPPUtil/UtilLog.cpp
system_cmds-643.30.1.tar.gz
[apple/system_cmds.git] / CPPUtil / UtilLog.cpp
1 //
2 // UtilLog.cpp
3 // CPPUtil
4 //
5 // Created by James McIlree on 4/15/13.
6 // Copyright (c) 2013 Apple. All rights reserved.
7 //
8
9 #include "CPPUtil.h"
10
11 BEGIN_UTIL_NAMESPACE
12
13 void log_msg(int level, const char* format, ...) {
14 va_list list;
15 va_start(list, format);
16 asl_vlog(NULL, NULL, level, format, list);
17 va_end(list);
18
19 va_start(list, format);
20 vfprintf(stderr, format, list);
21 va_end(list);
22 }
23
24 END_UTIL_NAMESPACE