update: better pool logging

This commit is contained in:
ngn 2024-08-07 01:49:29 +03:00
parent db537fdc14
commit 67dc67bf68
2 changed files with 32 additions and 27 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-08-07 01:06+0300\n" "POT-Creation-Date: 2024-08-07 01:48+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -108,51 +108,55 @@ msgstr "Lütfen geçerli bir işlem sayısı belirtin (1-1000)"
msgid "Please specify at least one pool in the configuration" msgid "Please specify at least one pool in the configuration"
msgstr "Lütfen konfigürasyonda en az bir havuz belirtin" msgstr "Lütfen konfigürasyonda en az bir havuz belirtin"
#: src/main.c:147 #: src/main.c:146
#, c-format
msgid "Hostname not specified for pool, skipping: %s"
msgstr "Ana makine adı havuz konfigürasyonunda belirtilmedi, geçiliyor: %s"
#: src/main.c:155
#, fuzzy, c-format #, fuzzy, c-format
msgid "Failed access the pool directory of %s: %s" msgid "%s: loading the pool"
msgstr "Havuz dizinine erişilemiyor: %s"
#: src/main.c:160
#, c-format
msgid "Failed to add pool to the list: %s"
msgstr "Havuzu listeye eklemek başarısız oldu: %s"
#: src/main.c:164
#, fuzzy, c-format
msgid "%s: loaded the pool"
msgstr "%s: havuz bilgisi başarıyla yüklendi" msgstr "%s: havuz bilgisi başarıyla yüklendi"
#: src/main.c:169 #: src/main.c:149
#, fuzzy, c-format
msgid "%s: hostname not specified for pool, skipping"
msgstr "Ana makine adı havuz konfigürasyonunda belirtilmedi, geçiliyor: %s"
#: src/main.c:157
#, fuzzy, c-format
msgid "%s: failed access the pool directory (%s)"
msgstr "Havuz dizinine erişilemiyor: %s"
#: src/main.c:162
#, fuzzy, c-format
msgid "%s: failed to add pool to the list (%s)"
msgstr "Havuzu listeye eklemek başarısız oldu: %s"
#: src/main.c:170
#, c-format #, c-format
msgid "Failed to sync the pools: %s" msgid "Failed to sync the pools: %s"
msgstr "Havuzları sekronize etmek başarısız oldu: %s" msgstr "Havuzları sekronize etmek başarısız oldu: %s"
#: src/main.c:174 #: src/main.c:175
#, fuzzy #, fuzzy
msgid "None of the pools is available for serving" msgid "None of the pools is available for serving"
msgstr "Havuzların hiçbiri sunmak için müsait değil" msgstr "Havuzların hiçbiri sunmak için müsait değil"
#: src/main.c:178 #: src/main.c:179
#, c-format #, c-format
msgid "Serving %lu pool on %s" msgid "Serving %lu pool on %s"
msgstr "%lu tane havuz %s adresinde sunuluyor" msgstr "%lu tane havuz %s adresinde sunuluyor"
#: src/main.c:178 #: src/main.c:179
#, c-format #, c-format
msgid "Serving %lu pools on %s" msgid "Serving %lu pools on %s"
msgstr "%lu tane havuz %s adresinde sunuluyor" msgstr "%lu tane havuz %s adresinde sunuluyor"
#: src/main.c:181 #: src/main.c:182
#, c-format #, c-format
msgid "Failed to start the server: %s" msgid "Failed to start the server: %s"
msgstr "Sunucuyu başlatmak başarısız oldu: %s" msgstr "Sunucuyu başlatmak başarısız oldu: %s"
#, fuzzy, c-format
#~ msgid "%s: loaded the pool"
#~ msgstr "%s: havuz bilgisi başarıyla yüklendi"
#, c-format #, c-format
#~ msgid "Failed to open the log file: %s" #~ msgid "Failed to open the log file: %s"
#~ msgstr "Kayıt dosyasını açmak başarısız oldu: %s" #~ msgstr "Kayıt dosyasını açmak başarısız oldu: %s"

View File

@ -143,8 +143,10 @@ int main(int argc, char *argv[]) {
} }
while (NULL != pool) { while (NULL != pool) {
info(_("%s: loading the pool"), pool->name);
if (NULL == pool->host) { if (NULL == pool->host) {
error(_("Hostname not specified for pool, skipping: %s"), pool->name); error(_("%s: hostname not specified for pool, skipping"), pool->name);
goto end_ctx; goto end_ctx;
} }
@ -152,16 +154,15 @@ int main(int argc, char *argv[]) {
sprintf(url, "mptp://%s", pool->host); sprintf(url, "mptp://%s", pool->host);
if (!file_canread(pool->dir)) { if (!file_canread(pool->dir)) {
error(_("Failed access the pool directory of %s: %s"), pool->name, pool->dir); error(_("%s: failed access the pool directory (%s)"), pool->name, pool->dir);
goto end_ctx; goto end_ctx;
} }
if (NULL == lm_ctx_pool_add(&ctx, pool->name, url, pool->dir)) { if (NULL == lm_ctx_pool_add(&ctx, pool->name, url, pool->dir)) {
error(_("Failed to add pool to the list: %s"), lm_strerror()); error(_("%s: failed to add pool to the list (%s)"), pool->name, lm_strerror());
goto end_ctx; goto end_ctx;
} }
info(_("%s: loaded the pool"), pool->name);
pool = pool->next; pool = pool->next;
} }