mirror of
https://github.com/HardySimpson/zlog
synced 2025-03-28 21:13:21 +00:00
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
/*
|
|
* This file is part of the zlog Library.
|
|
*
|
|
* Copyright (C) 2011 by Hardy Simpson <HardySimpson@gmail.com>
|
|
*
|
|
* The zlog Library is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* The zlog Library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with the zlog Library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __test_level_h
|
|
#define __test_level_h
|
|
|
|
#include "zlog.h"
|
|
|
|
enum {
|
|
ZLOG_LEVEL_TRACE = 30,
|
|
/* must equals conf file setting */
|
|
};
|
|
|
|
#define zlog_trace(cat, format, args...) \
|
|
zlog(cat, __FILE__, sizeof(__FILE__)-1, __func__, sizeof(__func__)-1, __LINE__, \
|
|
ZLOG_LEVEL_TRACE, format, ##args)
|
|
|
|
#endif
|