Removed some debug logs, changed a debug log to normal
This commit is contained in:
@@ -312,7 +312,6 @@ int Add_BBS()
|
||||
* Handle the Keep number of files option
|
||||
*/
|
||||
if (TIC.KeepNum) {
|
||||
Syslog('f', "AddBBS, handle KeepNum %d", TIC.KeepNum);
|
||||
if ((fdb = fopen(fdbname, "r")) != NULL) {
|
||||
|
||||
while (fread(&file, sizeof(file), 1, fdb) == 1) {
|
||||
@@ -329,7 +328,6 @@ int Add_BBS()
|
||||
}
|
||||
if (Found) {
|
||||
Keep++;
|
||||
Syslog('f', "Add \"%s\" to keeplist", file.LName);
|
||||
fill_fdlist(&fdl, file.LName, file.UploadDate);
|
||||
}
|
||||
}
|
||||
|
@@ -782,7 +782,6 @@ int ProcessTic(fa_list *sbl)
|
||||
*/
|
||||
for (tmpq = qal; tmpq; tmpq = tmpq->next) {
|
||||
if (tmpq->send) {
|
||||
Syslog('f', "Add SB %u:%u/%u", tmpq->aka.zone, tmpq->aka.net, tmpq->aka.node);
|
||||
sprintf(sbe, "%u:%u/%u", tmpq->aka.zone, tmpq->aka.net, tmpq->aka.node);
|
||||
fill_list(&sbl, sbe, NULL);
|
||||
} else {
|
||||
@@ -791,9 +790,6 @@ int ProcessTic(fa_list *sbl)
|
||||
}
|
||||
uniq_list(&sbl);
|
||||
sort_list(&sbl);
|
||||
|
||||
for (tmp = sbl; tmp; tmp = tmp->next)
|
||||
Syslog('f', "final SB list %s", ascfnode(tmp->addr, 0x0f));
|
||||
|
||||
/*
|
||||
* Now forward this file to the qualified downlinks.
|
||||
|
@@ -116,7 +116,9 @@ void flush_dir(char *ndir)
|
||||
* If we route via another aka, change everything.
|
||||
*/
|
||||
if (nodes.RouteVia.zone) {
|
||||
Syslog('p', "Route Via %s", aka2str(nodes.RouteVia));
|
||||
p = xstrcpy(aka2str(nodenr));
|
||||
Syslog('+', "Route to %s via %s", p, aka2str(nodes.RouteVia));
|
||||
free(p);
|
||||
noden.zone = nodes.RouteVia.zone;
|
||||
noden.net = nodes.RouteVia.net;
|
||||
noden.node = nodes.RouteVia.node;
|
||||
@@ -283,8 +285,6 @@ void flush_dir(char *ndir)
|
||||
* Do this until we find a new name or if the last digit is a '9' or 'z'.
|
||||
* Purge archives older then toss_days.
|
||||
*/
|
||||
Syslog('p', "Pulled %s", fname);
|
||||
|
||||
nr = oldnr = '0';
|
||||
if (nodes.ARCmailAlpha)
|
||||
maxnr = 'z';
|
||||
@@ -363,7 +363,6 @@ void flush_dir(char *ndir)
|
||||
* archiver program will complain.
|
||||
*/
|
||||
if (fsize == 0L) {
|
||||
Syslog('m', "Erasing zero bytes file %s", arcfile);
|
||||
unlink(arcfile);
|
||||
Attach = TRUE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user