]> git.saurik.com Git - apple/system_cmds.git/blame - CPPUtil/UtilLog.cpp
system_cmds-671.10.3.tar.gz
[apple/system_cmds.git] / CPPUtil / UtilLog.cpp
CommitLineData
bd6521f0
A
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
11BEGIN_UTIL_NAMESPACE
12
13void 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
24END_UTIL_NAMESPACE