[keel,nostalgia,turbine] Change log channel delimiter from :: to .

This commit is contained in:
2023-11-25 20:59:01 -06:00
parent ecc49a63b0
commit 540ed9b3f9
4 changed files with 75 additions and 29 deletions

View File

@@ -107,7 +107,7 @@ static ox::Error doTransformations(
// transformations need to be done after the copy to the new FS is complete
static ox::Error transformClaw(keel::Context *ctx, ox::TypeStore *ts, ox::FileSystem *dest, ox::CRStringView path) noexcept {
// copy
oxTracef("pack::transformClaw", "path: {}", path);
oxTracef("pack.transformClaw", "path: {}", path);
oxRequire(fileList, dest->ls(path));
for (const auto &name : fileList) {
const auto filePath = ox::sfmt("{}{}", path, name);

View File

@@ -116,7 +116,7 @@ ox::Error preloadDir(
ox::Preloader<PlatSpec> *pl,
ox::CRStringView path) noexcept {
// copy
oxTracef("pack::preload", "path: {}", path);
oxTracef("pack.preload", "path: {}", path);
oxRequire(fileList, romFs->ls(path));
for (const auto &name : fileList) {
const auto filePath = ox::sfmt("{}{}", path, name);