X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmelted%2Fmelted_log.c;h=21ebc7ad11e5dd882fb309ae42b9ee274704c381;hb=901c1b43d88ee589cd347a877bbd1d1cc27f2c6a;hp=62b7f73e627fefd3e53e2e8c632f7eda79c07704;hpb=27f0329aa8f434794f1f18e018fc3221e58b77a4;p=melted diff --git a/src/melted/melted_log.c b/src/melted/melted_log.c index 62b7f73..21ebc7a 100644 --- a/src/melted/melted_log.c +++ b/src/melted/melted_log.c @@ -1,6 +1,6 @@ /* - * miracle_log.c -- logging facility implementation - * Copyright (C) 2002-2003 Ushodaya Enterprises Limited + * melted_log.c -- logging facility implementation + * Copyright (C) 2002-2009 Ushodaya Enterprises Limited * Author: Dan Dennedy * * This program is free software; you can redistribute it and/or modify @@ -22,21 +22,21 @@ #include #include -#include "miracle_log.h" +#include "melted_log.h" static int log_output = log_stderr; static int threshold = LOG_DEBUG; -void miracle_log_init( enum log_output method, int new_threshold ) +void melted_log_init( enum log_output method, int new_threshold ) { log_output = method; threshold = new_threshold; if (method == log_syslog) - openlog( "miracle", LOG_CONS, LOG_DAEMON ); + openlog( "melted", LOG_CONS, LOG_DAEMON ); } -void miracle_log( int priority, const char *format, ... ) +void melted_log( int priority, const char *format, ... ) { va_list list; va_start( list, format );