Overhaul logging.

This commit is contained in:
gibbed
2020-02-28 14:30:48 -06:00
committed by Rick Gibbed
parent de3c91ab2c
commit a48bb71c2f
107 changed files with 954 additions and 854 deletions

View File

@@ -294,7 +294,7 @@ void EmulatorWindow::FileDrop(const std::filesystem::path& filename) {
auto result = emulator_->LaunchPath(filename);
if (XFAILED(result)) {
// TODO: Display a message box.
XELOGE("Failed to launch target: %.8X", result);
XELOGE("Failed to launch target: {:08X}", result);
}
}
@@ -326,7 +326,7 @@ void EmulatorWindow::FileOpen() {
auto result = emulator_->LaunchPath(abs_path);
if (XFAILED(result)) {
// TODO: Display a message box.
XELOGE("Failed to launch target: %.8X", result);
XELOGE("Failed to launch target: {:08X}", result);
}
}
}

View File

@@ -226,7 +226,7 @@ int xenia_main(const std::vector<std::string>& args) {
}
}
storage_root = std::filesystem::absolute(storage_root);
XELOGI("Storage root: %S", storage_root.c_str());
XELOGI("Storage root: {}", xe::path_to_utf8(storage_root));
config::SetupConfig(storage_root);
@@ -235,7 +235,7 @@ int xenia_main(const std::vector<std::string>& args) {
content_root = storage_root / "content";
}
content_root = std::filesystem::absolute(content_root);
XELOGI("Content root: %S", content_root.c_str());
XELOGI("Content root: {}", xe::path_to_utf8(content_root));
if (cvars::discord) {
discord::DiscordPresence::Initialize();
@@ -254,7 +254,7 @@ int xenia_main(const std::vector<std::string>& args) {
emulator->Setup(emulator_window->window(), CreateAudioSystem,
CreateGraphicsSystem, CreateInputDrivers);
if (XFAILED(result)) {
XELOGE("Failed to setup emulator: %.8X", result);
XELOGE("Failed to setup emulator: {:08X}", result);
return 1;
}