Skip to content

Commit

Permalink
Put "loki_setup: " in front of log entries, so then mean something when
Browse files Browse the repository at this point in the history
they show up in the MacOS system log, etc.
  • Loading branch information
icculus committed Mar 9, 2004
1 parent c942eff commit 8dc88a1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions log.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ int print_log(install_log *log, log_level level, const char *fmt, ...)
if ( log ) {
/* Print it out if appropriate */
if ( level >= log->verbosity ) {
fputs(_("loki_setup: "), stdout);
fputs(text, stdout);
fflush(stdout);
}
Expand Down

0 comments on commit 8dc88a1

Please sign in to comment.