2017-11-29 07:48:07 +00:00
|
|
|
/*
|
2017-12-30 03:36:20 +00:00
|
|
|
* Copyright (C) 2017 Jianhui Zhao <jianhuizhao329@gmail.com>
|
2017-11-29 07:48:07 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2018-01-17 04:50:25 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2017-12-29 06:40:58 +00:00
|
|
|
#include "log.h"
|
2017-11-09 04:54:28 +00:00
|
|
|
|
2018-01-10 15:30:24 +00:00
|
|
|
void __uh_log(const char *filename, int line, int priority, const char *fmt, ...)
|
2017-11-09 04:54:28 +00:00
|
|
|
{
|
2017-11-13 12:51:42 +00:00
|
|
|
va_list ap;
|
|
|
|
static char buf[128];
|
2017-11-09 04:54:28 +00:00
|
|
|
|
2017-11-13 12:51:42 +00:00
|
|
|
snprintf(buf, sizeof(buf), "(%s:%d) ", filename, line);
|
|
|
|
|
2018-01-10 15:30:24 +00:00
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), fmt, ap);
|
2017-11-13 12:51:42 +00:00
|
|
|
va_end(ap);
|
2017-11-09 04:54:28 +00:00
|
|
|
|
2017-11-13 12:51:42 +00:00
|
|
|
if (priority == LOG_ERR && errno > 0) {
|
|
|
|
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), ":%s", strerror(errno));
|
|
|
|
errno = 0;
|
|
|
|
}
|
2017-11-09 04:54:28 +00:00
|
|
|
|
2018-01-10 15:30:24 +00:00
|
|
|
ulog(priority, "%s\n", buf);
|
2017-11-09 04:54:28 +00:00
|
|
|
}
|
|
|
|
|