Changed some logmessages

This commit is contained in:
Michiel Broek 2003-11-21 19:32:18 +00:00
parent 1cd242c135
commit ee35478a80
4 changed files with 12 additions and 5 deletions

View File

@ -1,7 +1,10 @@
$Id$ $Id$
v0.39.1 22-Oct-2003 v0.39.2 21-Nov-2003
v0.39.1 22-Oct-2003 - 21-Nov-2003
general: general:
Make dist now creates bzip2 archives. Make dist now creates bzip2 archives.
@ -48,6 +51,10 @@ v0.39.1 22-Oct-2003
Added dynamic optimum sendbuffer size with a maximum of 8192 Added dynamic optimum sendbuffer size with a maximum of 8192
bytes with an average size of 2048 bytes. bytes with an average size of 2048 bytes.
Removed ITN support. Removed ITN support.
Changed two inbound logmessages to debug level.
mbfido:
Changed two logmessages to debug level.
mbsetup: mbsetup:
In node editor, fixed error message when there was no more In node editor, fixed error message when there was no more

View File

@ -73,7 +73,7 @@ int inbound_open(faddr *addr, int protected)
mkdirs(temp, 0700); mkdirs(temp, 0700);
free(temp); free(temp);
Syslog('+', "Inbound set to \"%s\"", tempinbound); Syslog('s', "Inbound set to \"%s\"", tempinbound);
return 0; return 0;
} }
@ -93,7 +93,7 @@ int inbound_close(int success)
struct stat stb; struct stat stb;
int rc; int rc;
Syslog('+', "Closing temp inbound after a %s session", success?"good":"failed"); Syslog('s', "Closing temp inbound after a %s session", success?"good":"failed");
if (! success) { if (! success) {
if (tempinbound) if (tempinbound)
free(tempinbound); free(tempinbound);

View File

@ -556,7 +556,7 @@ void flush_dir(char *ndir)
p = strchr(p, ' '); p = strchr(p, ' ');
p++; p++;
Syslog('+', "File attach %s", p); Syslog('p', "File attach %s", p);
if (nodes.Session_out == S_DIRECT) { if (nodes.Session_out == S_DIRECT) {
attach(noden, p, mode, flavor); attach(noden, p, mode, flavor);
} else if (nodes.Session_out == S_DIR) { } else if (nodes.Session_out == S_DIR) {

View File

@ -474,7 +474,7 @@ int LoadTic(char *inb, char *tfn)
if (rename(Temp, Temp2)) if (rename(Temp, Temp2))
WriteError("$Can't rename %s to %s", Temp, Temp2); WriteError("$Can't rename %s to %s", Temp, Temp2);
else else
Syslog('+', "Renamed %s to %s", Temp, Temp2); Syslog('f', "Renamed %s to %s", Temp, Temp2);
} }
} }
strncpy(TIC.NewFile, TIC.TicIn.File, 80); strncpy(TIC.NewFile, TIC.TicIn.File, 80);