fix: rewrite confusing log message

This commit is contained in:
KernelDeimos 2024-12-30 15:34:12 -05:00
parent 233260233c
commit dacbbf033d

View File

@ -277,8 +277,8 @@ async function refresh_associations_cache(){
/** @type BaseDatabaseAccessService */
const db = services.get('database').get(DB_READ, 'apps');
const log = services.get('log-service').create('refresh_apps_cache');
log.tick('refresh associations cache');
const log = services.get('log-service').create('helpers.js');
log.tick('refresh file associations');
const associations = await db.read('SELECT * FROM app_filetype_association');
const lists = {};
for ( const association of associations ) {