]>
git.saurik.com Git - apple/system_cmds.git/blob - CPPUtil/UtilLog.cpp
5 // Created by James McIlree on 4/15/13.
6 // Copyright (c) 2013 Apple. All rights reserved.
13 void log_msg(int level
, const char* format
, ...) {
15 va_start(list
, format
);
16 asl_vlog(NULL
, NULL
, level
, format
, list
);
19 va_start(list
, format
);
20 vfprintf(stderr
, format
, list
);