commit d41f4d6d20797c9dfdde272b8689f4cc7622fe38 from: Alexander Barton date: Sat Jun 25 12:56:27 2011 UTC Display configuration errors more prominent on "--configtest" commit - 391cf4e2a11a1ca3969cb01db062037a9cd8caf3 commit + d41f4d6d20797c9dfdde272b8689f4cc7622fe38 blob - 4da5b9e0742ac55ccc6c2c3276ce3d184443c751 blob + 9e3fe13d0250e682e324fb97851f6cb1031ee12c --- src/ngircd/conf.c +++ src/ngircd/conf.c @@ -1933,8 +1933,13 @@ va_dcl vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap ); va_end( ap ); - if (Use_Log) Log( Level, "%s", msg ); - else puts( msg ); + if (!Use_Log) { + if (Level <= LOG_WARNING) + printf(" - %s\n", msg); + else + puts(msg); + } else + Log(Level, "%s", msg); } #ifdef DEBUG