diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-08-28 15:53:44 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-08-28 15:53:44 +0200 |
commit | 2584360fccdaae7123728b7b2c981401af40d153 (patch) | |
tree | e6fc96e64b5c83cfff4723b9d7acab57c496f6cb /src | |
parent | msg: fix a buffer overflow (diff) | |
download | cimple-2584360fccdaae7123728b7b2c981401af40d153.tar.gz cimple-2584360fccdaae7123728b7b2c981401af40d153.zip |
server: more logging
Diffstat (limited to 'src')
-rw-r--r-- | src/server.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server.c b/src/server.c index 4706c71..6a4b73c 100644 --- a/src/server.c +++ b/src/server.c @@ -115,6 +115,7 @@ static int worker_dequeue_run(struct server *server, struct ci_queue_entry **ci_ } *ci_run = ci_queue_pop(&server->ci_queue); + print_log("Removed a CI run for repository %s from the queue\n", (*ci_run)->url); goto unlock; unlock: @@ -134,6 +135,7 @@ static int worker_requeue_run(struct server *server, struct ci_queue_entry *ci_r } ci_queue_push_head(&server->ci_queue, ci_run); + print_log("Requeued a CI run for repository %s\n", ci_run->url); pthread_check(pthread_mutex_unlock(&server->server_mtx), "pthread_mutex_unlock"); @@ -190,8 +192,6 @@ static int msg_ci_run_queue(struct server *server, const char *url, const char * struct ci_queue_entry *entry; int ret = 0; - print_log("Scheduling a new CI run for repository %s\n", url); - ret = pthread_mutex_lock(&server->server_mtx); if (ret) { pthread_print_errno(ret, "pthread_mutex_lock"); @@ -203,6 +203,7 @@ static int msg_ci_run_queue(struct server *server, const char *url, const char * goto unlock; ci_queue_push(&server->ci_queue, entry); + print_log("Added a new CI run for repository %s to the queue\n", url); ret = pthread_cond_signal(&server->server_cv); if (ret) { |