mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Replace some info logs with debug logs
These are a bit noisy, so I've replaced them instead.
This commit is contained in:
parent
b652d327dc
commit
23a2f57a70
1 changed files with 4 additions and 8 deletions
|
@ -562,13 +562,11 @@ bool FILESYSTEM_mountAssets(const char* path)
|
||||||
|
|
||||||
MAYBE_FAIL(graphics.reloadresources());
|
MAYBE_FAIL(graphics.reloadresources());
|
||||||
}
|
}
|
||||||
#if 0 /* flibit removed this because it was noisy, maybe keep for debug? */
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Wasn't a level zip, base zip, or folder! */
|
/* Wasn't a level zip, base zip, or folder! */
|
||||||
vlog_info("Asset directory does not exist");
|
vlog_debug("Asset directory does not exist");
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -588,12 +586,10 @@ void FILESYSTEM_unmountAssets(void)
|
||||||
assetDir[0] = '\0';
|
assetDir[0] = '\0';
|
||||||
graphics.reloadresources();
|
graphics.reloadresources();
|
||||||
}
|
}
|
||||||
#if 0 /* flibit removed this because it was noisy, maybe keep for debug? */
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
vlog_info("Cannot unmount when no asset directory is mounted");
|
vlog_debug("Cannot unmount when no asset directory is mounted");
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void getMountedPath(
|
static void getMountedPath(
|
||||||
|
@ -844,7 +840,7 @@ fail:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
vlog_info("The complete reloaded file size: %lli", size);
|
vlog_debug("The complete reloaded file size: %lli", size);
|
||||||
|
|
||||||
for (i = 0; i < SDL_arraysize(blob->m_headers); ++i)
|
for (i = 0; i < SDL_arraysize(blob->m_headers); ++i)
|
||||||
{
|
{
|
||||||
|
@ -855,7 +851,7 @@ fail:
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
vlog_info("%s unpacked", header->name);
|
vlog_debug("%s unpacked", header->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue