[studio/modlib] Comment out logging in configio

This commit is contained in:
Gary Talent 2024-06-12 23:30:56 -05:00
parent 3824788a1a
commit 7eab2f9278

View File

@ -39,7 +39,7 @@ ox::Result<T> readConfig(keel::Context &ctx, ox::CRStringView name) noexcept {
ox::PassThroughFS fs(configPath(ctx)); ox::PassThroughFS fs(configPath(ctx));
auto const [buff, err] = fs.read(path); auto const [buff, err] = fs.read(path);
if (err) { if (err) {
oxErrf("Could not read config file: {}\n", toStr(err)); //oxErrf("Could not read config file: {} - {}\n", path, toStr(err));
return err; return err;
} }
return ox::readOC<T>(buff); return ox::readOC<T>(buff);
@ -57,13 +57,13 @@ ox::Error writeConfig(keel::Context &ctx, ox::CRStringView name, T const&data) n
auto const path = ox::sfmt("/{}.json", detail::slashesToPct(name)); auto const path = ox::sfmt("/{}.json", detail::slashesToPct(name));
ox::PassThroughFS fs(configPath(ctx)); ox::PassThroughFS fs(configPath(ctx));
if (auto const err = fs.mkdir("/", true)) { if (auto const err = fs.mkdir("/", true)) {
oxErrf("Could not create config directory: {}\n", toStr(err)); //oxErrf("Could not create config directory: {} - {}\n", path, toStr(err));
return err; return err;
} }
oxRequireM(buff, ox::writeOC(data)); oxRequireM(buff, ox::writeOC(data));
*buff.back().value = '\n'; *buff.back().value = '\n';
if (auto const err = fs.write(path, buff.data(), buff.size())) { if (auto const err = fs.write(path, buff.data(), buff.size())) {
oxErrf("Could not read config file: {}\n", toStr(err)); //oxErrf("Could not read config file: {} - {}\n", path, toStr(err));
return OxError(2, "Could not read config file"); return OxError(2, "Could not read config file");
} }
return {}; return {};