mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 10:51:20 +03:00
54988802b7
On Thu, Jan 15, 2004 at 05:14:16AM +0100, Kay Sievers wrote: > On Wed, Jan 14, 2004 at 01:10:43PM -0800, Greg KH wrote: > > On Wed, Jan 14, 2004 at 02:34:26PM -0600, Clay Haapala wrote: > > > On Wed, 14 Jan 2004, Chris Friesen spake thusly: > > > > > > > > Maybe for ones with a matching rule, you could print something like: > > > > > > > > > > > Is the act of printing/syslogging a rule in an of itself? > > > > No, as currently the only way stuff ends up in the syslog is if > > DEBUG=true is used on the build line. > > > > But it's sounding like we might want to change that... :) > > How about this in the syslog after connect/disconnect? > > Jan 15 05:07:45 pim udev[28007]: configured rule in '/etc/udev/udev.rules' at line 17 applied, 'video*' becomes 'video/webcam%n' > Jan 15 05:07:45 pim udev[28007]: creating device node '/udev/video/webcam0' > Jan 15 05:07:47 pim udev[28015]: removing device node '/udev/video/webcam0' Here is a slightly better version. I've created a logging.h file and moved the debug macros from udev.h in there. If you type: 'make' - you will get a binary that prints one or two lines to syslog if a device node is created or deleted 'make LOG=false' - you get a binary that prints asolutely nothing 'make DEBUG=true' - the same as today, it will print all debug lines
57 lines
1.4 KiB
C
57 lines
1.4 KiB
C
/*
|
|
* logging.c
|
|
*
|
|
* Simple logging functions that can be compiled away into nothing.
|
|
*
|
|
* Copyright (C) 2001-2003 Greg Kroah-Hartman <greg@kroah.com>
|
|
*
|
|
* 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, version 2 of the License.
|
|
*
|
|
* 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, write to the Free Software Foundation, Inc.,
|
|
* 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#include <syslog.h>
|
|
|
|
#include "logging.h"
|
|
|
|
|
|
static int logging_init = 0;
|
|
static unsigned char udev_logname[42];
|
|
|
|
static void init_logging(void)
|
|
{
|
|
snprintf(udev_logname, 42,"udev[%d]", getpid());
|
|
|
|
openlog(udev_logname, 0, LOG_DAEMON);
|
|
logging_init = 1;
|
|
}
|
|
|
|
/**
|
|
* log_message - sends a message to the logging facility
|
|
*/
|
|
int log_message(int level, const char *format, ...)
|
|
{
|
|
va_list args;
|
|
|
|
if (!logging_init)
|
|
init_logging();
|
|
va_start(args, format);
|
|
vsyslog(level, format, args);
|
|
va_end(args);
|
|
return 1;
|
|
}
|