summaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-29 11:16:51 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-29 11:16:51 +0000
commit67ea0d484469875ee14bb28348f9dc1a40a5b843 (patch)
tree7f7515d9772e7152883c69d876dfff817bcee9eb /log.c
parent9b73d1c0e9ca979700493337d0a87497b882d811 (diff)
downloadrsync-67ea0d484469875ee14bb28348f9dc1a40a5b843.tar.gz
put the pid on each line of the log file to facilitate
auto-parsing. Requested by Jarkko Hietaniemi (jhi@iki.fi)
Diffstat (limited to 'log.c')
-rw-r--r--log.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/log.c b/log.c
index 3172df64..21b5c1c2 100644
--- a/log.c
+++ b/log.c
@@ -51,7 +51,8 @@ static char *timestring(void )
static void logit(int priority, char *buf)
{
if (logfile) {
- fprintf(logfile,"%s %s", timestring(), buf);
+ fprintf(logfile,"%s [%d] %s",
+ timestring(), (int)getpid(), buf);
fflush(logfile);
} else {
syslog(priority, "%s", buf);
@@ -192,8 +193,8 @@ void log_send(struct file_struct *file)
{
extern int module_id;
if (lp_transfer_logging(module_id)) {
- rprintf(FLOG,"%d Sending %s [%s] %.0f %s\n",
- (int)getpid(), client_name(0), client_addr(0),
+ rprintf(FLOG,"Sending %s [%s] %.0f %s\n",
+ client_name(0), client_addr(0),
(double)file->length, f_name(file));
}
}
@@ -203,8 +204,8 @@ void log_recv(struct file_struct *file)
{
extern int module_id;
if (lp_transfer_logging(module_id)) {
- rprintf(FLOG,"%d Receiving %s [%s] %.0f %s\n",
- (int)getpid(), client_name(0), client_addr(0),
+ rprintf(FLOG,"Receiving %s [%s] %.0f %s\n",
+ client_name(0), client_addr(0),
(double)file->length, f_name(file));
}
}
@@ -214,13 +215,12 @@ void log_exit(int code)
{
if (code == 0) {
extern struct stats stats;
- rprintf(FLOG,"%d wrote %.0f bytes read %.0f bytes total size %.0f\n",
- (int)getpid(),
+ rprintf(FLOG,"wrote %.0f bytes read %.0f bytes total size %.0f\n",
(double)stats.total_written,
(double)stats.total_read,
(double)stats.total_size);
} else {
- rprintf(FLOG,"%d transfer interrupted\n", (int)getpid());
+ rprintf(FLOG,"transfer interrupted\n");
}
}