blob: 7dc874fc63256fdb826d6791a816fcf4a753f5d4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#ifndef H_MODLOG_
#define H_MODLOG_
#include "log/log.h"
#define MODLOG_MODULE_DFLT 255
static inline void
modlog_dummy(const char *msg, ...)
{
(void)msg;
}
#define MODLOG_DEBUG(ml_mod_, ml_msg_, ...) \
modlog_dummy((ml_msg_), ##__VA_ARGS__)
#define MODLOG_INFO(ml_mod_, ml_msg_, ...) \
modlog_dummy((ml_msg_), ##__VA_ARGS__)
#define MODLOG_WARN(ml_mod_, ml_msg_, ...) \
modlog_dummy((ml_msg_), ##__VA_ARGS__)
#define MODLOG_ERROR(ml_mod_, ml_msg_, ...) \
modlog_dummy((ml_msg_), ##__VA_ARGS__)
#define MODLOG_CRITICAL(ml_mod_, ml_msg_, ...) \
modlog_dummy((ml_msg_), ##__VA_ARGS__)
#define MODLOG(ml_lvl_, ml_mod_, ...) \
MODLOG_ ## ml_lvl_((ml_mod_), __VA_ARGS__)
#define MODLOG_DFLT(ml_lvl_, ...) \
MODLOG(ml_lvl_, LOG_MODULE_DEFAULT, __VA_ARGS__)
#endif