diff --git a/src/sbbs3/main.cpp b/src/sbbs3/main.cpp index 841a647bd3aaaad27acadf0a0fc8b5d756095cb1..c727d0af9250a0bf3e6329af59c05a21439e60d3 100644 --- a/src/sbbs3/main.cpp +++ b/src/sbbs3/main.cpp @@ -4123,7 +4123,8 @@ void DLLCALL bbs_thread(void* arg) break; if(!(startup->options&BBS_OPT_NO_RECYCLE)) { if((p=semfile_list_check(&initialized,&recycle_semfiles))!=NULL) { - lprintf(LOG_INFO,"0000 Recycle semaphore file (%s) detected",p); + lprintf(LOG_INFO,"%04d Recycle semaphore file (%s) detected" + ,telnet_socket,p); break; } #if 0 /* unused */ @@ -4131,15 +4132,17 @@ void DLLCALL bbs_thread(void* arg) startup->recycle_now=TRUE; #endif if(startup->recycle_now==TRUE) { - lprintf(LOG_INFO,"0000 Recycle semaphore signaled"); + lprintf(LOG_INFO,"%04d Recycle semaphore signaled",telnet_socket); startup->recycle_now=FALSE; break; } } if(((p=semfile_list_check(&initialized,&shutdown_semfiles))!=NULL - && lprintf(LOG_INFO,"0000 Shutdown semaphore file (%s) detected",p)) + && lprintf(LOG_INFO,"%04d Shutdown semaphore file (%s) detected" + ,telnet_socket,p)) || (startup->shutdown_now==TRUE - && lprintf(LOG_INFO,"0000 Shutdown semaphore signaled"))) { + && lprintf(LOG_INFO,"%04d Shutdown semaphore signaled" + ,telnet_socket))) { startup->shutdown_now=FALSE; terminate_server=TRUE; break;