Skip to content
Snippets Groups Projects
Commit 208f263b authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Just a little wording update on the fmutex file open log message

parent 2a4c5913
No related branches found
No related tags found
No related merge requests found
Pipeline #7160 passed
...@@ -2926,7 +2926,7 @@ void event_thread(void* arg) ...@@ -2926,7 +2926,7 @@ void event_thread(void* arg)
sbbs->lprintf(LOG_INFO," %s exists (unpack in progress?) since %s", lockfname, time_as_hhmm(&sbbs->cfg, t, str)); sbbs->lprintf(LOG_INFO," %s exists (unpack in progress?) since %s", lockfname, time_as_hhmm(&sbbs->cfg, t, str));
continue; continue;
} }
sbbs->lprintf(LOG_DEBUG, "%s is now owned", lockfname); sbbs->lprintf(LOG_DEBUG, "Opened %s", lockfname);
if(!fexist(fname)) { if(!fexist(fname)) {
sbbs->lprintf(LOG_DEBUG, "%s already gone", fname); sbbs->lprintf(LOG_DEBUG, "%s already gone", fname);
if(!fmutex_close(lockfname, lockfile)) if(!fmutex_close(lockfname, lockfile))
...@@ -2995,7 +2995,7 @@ void event_thread(void* arg) ...@@ -2995,7 +2995,7 @@ void event_thread(void* arg)
sbbs->lprintf(LOG_INFO,"%s exists (pack in progress?) since %s", lockfname, time_as_hhmm(&sbbs->cfg, t, str)); sbbs->lprintf(LOG_INFO,"%s exists (pack in progress?) since %s", lockfname, time_as_hhmm(&sbbs->cfg, t, str));
continue; continue;
} }
sbbs->lprintf(LOG_DEBUG, "%s is now owned", lockfname); sbbs->lprintf(LOG_DEBUG, "Opened %s", lockfname);
if(!fexist(fname)) { if(!fexist(fname)) {
sbbs->lprintf(LOG_DEBUG, "%s already gone", fname); sbbs->lprintf(LOG_DEBUG, "%s already gone", fname);
if(!fmutex_close(lockfname, lockfile)) if(!fmutex_close(lockfname, lockfile))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment