mirror of
https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
synced 2024-12-04 09:13:41 +08:00
59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
|
/*
|
||
|
* kmod - log infrastructure
|
||
|
*
|
||
|
* Copyright (C) 2012 ProFUSION embedded systems
|
||
|
*
|
||
|
* 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 2 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/>.
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <syslog.h>
|
||
|
|
||
|
#include "kmod.h"
|
||
|
|
||
|
_always_inline_ const char *prio_to_str(int prio);
|
||
|
|
||
|
|
||
|
_always_inline_ const char *prio_to_str(int prio)
|
||
|
{
|
||
|
const char *prioname;
|
||
|
char buf[32];
|
||
|
|
||
|
switch (prio) {
|
||
|
case LOG_CRIT:
|
||
|
prioname = "FATAL";
|
||
|
break;
|
||
|
case LOG_ERR:
|
||
|
prioname = "ERROR";
|
||
|
break;
|
||
|
case LOG_WARNING:
|
||
|
prioname = "WARNING";
|
||
|
break;
|
||
|
case LOG_NOTICE:
|
||
|
prioname = "NOTICE";
|
||
|
break;
|
||
|
case LOG_INFO:
|
||
|
prioname = "INFO";
|
||
|
break;
|
||
|
case LOG_DEBUG:
|
||
|
prioname = "DEBUG";
|
||
|
break;
|
||
|
default:
|
||
|
snprintf(buf, sizeof(buf), "LOG-%03d", prio);
|
||
|
prioname = buf;
|
||
|
}
|
||
|
|
||
|
return prioname;
|
||
|
}
|