Skip to content

Commit deb9cd3

Browse files
committed
Core updater logging formatting
1 parent 8f73291 commit deb9cd3

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

tasks/task_core_updater.c

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,8 +1221,8 @@ static void task_update_installed_cores_handler(retro_task_t *task)
12211221
{
12221222
update_installed_handle->list_size =
12231223
core_updater_list_size(update_installed_handle->core_list);
1224-
RARCH_DBG("[Core Updater] Updater list size from buildbot: %d\n",
1225-
update_installed_handle->list_size);
1224+
RARCH_DBG("[Core Updater] Updater list size from buildbot: %d.\n",
1225+
update_installed_handle->list_size);
12261226

12271227
if (update_installed_handle->list_size < 1)
12281228
update_installed_handle->status = UPDATE_INSTALLED_CORES_END;
@@ -1257,7 +1257,8 @@ static void task_update_installed_cores_handler(retro_task_t *task)
12571257
update_installed_handle->list_index;
12581258
update_installed_handle->status =
12591259
UPDATE_INSTALLED_CORES_UPDATE_CORE;
1260-
RARCH_DBG("[Core Updater] Updating installed core: \"%s\"\n",list_entry->local_core_path);
1260+
RARCH_LOG("[Core Updater] Checking: \"%s\"...\n",
1261+
list_entry->local_core_path);
12611262
}
12621263
}
12631264

@@ -1310,7 +1311,7 @@ static void task_update_installed_cores_handler(retro_task_t *task)
13101311
* updater list provides 'sane' core paths */
13111312
if (core_info_get_core_lock(list_entry->local_core_path, false))
13121313
{
1313-
RARCH_LOG("[Core Updater] Skipping locked core: %s\n",
1314+
RARCH_LOG("[Core Updater] Skipping locked core: \"%s\".\n",
13141315
list_entry->display_name);
13151316

13161317
/* Core update is disabled
@@ -1340,7 +1341,8 @@ static void task_update_installed_cores_handler(retro_task_t *task)
13401341
if ((local_crc != 0) && (local_crc == list_entry->crc))
13411342
{
13421343
update_installed_handle->status = UPDATE_INSTALLED_CORES_ITERATE;
1343-
RARCH_DBG("[Core Updater] Core %s is already at latest version\n",list_entry->display_name);
1344+
RARCH_LOG("[Core Updater] Core \"%s\" is already at latest version.\n",
1345+
list_entry->display_name);
13441346
break;
13451347
}
13461348

@@ -1380,7 +1382,8 @@ static void task_update_installed_cores_handler(retro_task_t *task)
13801382

13811383
/* Wait for download to complete */
13821384
update_installed_handle->status = UPDATE_INSTALLED_CORES_WAIT_DOWNLOAD;
1383-
RARCH_DBG("[Core Updater] Downloading core %s\n",list_entry->display_name);
1385+
RARCH_LOG("[Core Updater] Downloading: \"%s\"...\n",
1386+
list_entry->display_name);
13841387
}
13851388
}
13861389
break;

0 commit comments

Comments
 (0)