diff options
| author | Mikaƫl Capelle <capelle.mikael@gmail.com> | 2024-05-25 13:14:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-25 13:14:46 +0200 |
| commit | fa82d1cca1544c401bc06c341ce265a346a498b9 (patch) | |
| tree | e67f24433b315b71729d2e8bea12c72c32244d83 /src/organizercore.cpp | |
| parent | 9ee4c5afe18eb887acf4ea843b56da9a267d34b0 (diff) | |
Switch from fmtlib to std::format. (#2031)
* Switch from fmtlib to std::format.
* Remove libffi from dependencies in Github action.
Diffstat (limited to 'src/organizercore.cpp')
| -rw-r--r-- | src/organizercore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/organizercore.cpp b/src/organizercore.cpp index 5bc3851c..2f45116c 100644 --- a/src/organizercore.cpp +++ b/src/organizercore.cpp @@ -1564,7 +1564,7 @@ void OrganizerCore::onDirectoryRefreshed() // needs to be done before post refresh tasks m_DirectoryUpdate = false; - log::debug("running {} post refresh tasks"); + log::debug("running post refresh tasks"); m_OnNextRefreshCallbacks(); m_OnNextRefreshCallbacks.disconnect_all_slots(); @@ -1947,7 +1947,7 @@ bool OrganizerCore::beforeRun( m_USVFS.updateMapping(fileMapping(profileName, customOverwrite)); m_USVFS.updateForcedLibraries(forcedLibraries); } catch (const UsvfsConnectorException& e) { - log::debug(e.what()); + log::debug("{}", e.what()); return false; } catch (const std::exception& e) { QWidget* w = nullptr; |
