]>
git.cameronkatri.com Git - apple_cmds.git/blob - network_cmds/rtadvd.tproj/rtadvd_logging.h
2 * Copyright (c) 2019 Apple Inc. All rights reserved.
4 * This document is the property of Apple Inc.
5 * It is considered confidential and proprietary.
7 * This document may not be reproduced or transmitted in any form,
8 * in whole or in part, without the express written permission of
12 extern void rtadvdLog(int level
, const char *format
, ...);
14 #define errorlog(__format, ...) \
15 rtadvdLog(OS_LOG_TYPE_DEFAULT, __format, ## __VA_ARGS__)
17 #define noticelog(__format, ...) \
18 rtadvdLog(OS_LOG_TYPE_DEFAULT, __format, ## __VA_ARGS__)
20 #define infolog(__format, ...) \
21 rtadvdLog(OS_LOG_TYPE_INFO, __format, ## __VA_ARGS__)
23 #define debuglog(__format, ...) \
24 rtadvdLog(OS_LOG_TYPE_DEBUG, __format, ## __VA_ARGS__)