ukui-biometric-auth/pam-biometric/logger.c

46 lines
1.3 KiB
C
Raw Normal View History

2022-06-02 16:34:46 +08:00
/*
* Copyright (C) 2018 Tianjin KYLIN Information Technology Co., Ltd.
*
* 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, 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/>.
*
**/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <time.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/stat.h>
2024-01-19 10:21:18 +08:00
int pam_enable_debug;
char *pam_log_prefix;
2022-06-02 16:34:46 +08:00
2024-01-19 10:21:18 +08:00
void pam_logger(char *format, ...)
2022-06-02 16:34:46 +08:00
{
2024-01-19 10:21:18 +08:00
if(!pam_enable_debug){
2022-06-02 16:34:46 +08:00
return;
}
va_list args;
time_t t = time(NULL);
char timestr[32] = {0};
strftime(timestr, sizeof(timestr), "%Y-%m-%d %H:%M:%S", localtime(&t)); //产生"YYYYMMDD hh:mm:ss"格式的字符串。
2024-01-19 10:21:18 +08:00
fprintf(stderr, "[%s] %s - ", pam_log_prefix, timestr);
2022-06-02 16:34:46 +08:00
va_start(args, format); /* 初始化 args */
vfprintf(stderr, format, args);
}