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$
v0.39.1 22-Oct-2003
v0.39.2 21-Nov-2003
v0.39.1 22-Oct-2003 - 21-Nov-2003
general:
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
bytes with an average size of 2048 bytes.
Removed ITN support.
Changed two inbound logmessages to debug level.
mbfido:
Changed two logmessages to debug level.
mbsetup:
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);
free(temp);
Syslog('+', "Inbound set to \"%s\"", tempinbound);
Syslog('s', "Inbound set to \"%s\"", tempinbound);
return 0;
}
@ -93,7 +93,7 @@ int inbound_close(int success)
struct stat stb;
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 (tempinbound)
free(tempinbound);

View File

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

View File

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