]> git.saurik.com Git - apple/system_cmds.git/blobdiff - CPPUtil/UtilLog.cpp
system_cmds-735.tar.gz
[apple/system_cmds.git] / CPPUtil / UtilLog.cpp
diff --git a/CPPUtil/UtilLog.cpp b/CPPUtil/UtilLog.cpp
deleted file mode 100644 (file)
index 3d91f67..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-//  UtilLog.cpp
-//  CPPUtil
-//
-//  Created by James McIlree on 4/15/13.
-//  Copyright (c) 2013 Apple. All rights reserved.
-//
-
-#include "CPPUtil.h"
-
-BEGIN_UTIL_NAMESPACE
-
-void log_msg(int level, const char* format, ...) {
-       va_list list;
-       va_start(list, format);
-       asl_vlog(NULL, NULL, level, format, list);
-       va_end(list);
-
-       va_start(list, format);
-       vfprintf(stderr, format, list);
-       va_end(list);
-}
-
-END_UTIL_NAMESPACE