Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Fix error formating
Browse files Browse the repository at this point in the history
  • Loading branch information
pierr3 committed Jul 5, 2023
1 parent a283d49 commit 205eaa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data_file_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ inline void vector_audio::data_file::Handler::thread()
try {
parse_slurper(sluper_data);
} catch (const std::exception& e) {
spdlog::error("Failed to parse slurper data: %s. Raw string: %s", e.what(), sluper_data);
spdlog::error("Failed to parse slurper data: " + std::string(e.what()) + ". Raw string:" + sluper_data);
}
}

Expand Down

0 comments on commit 205eaa8

Please sign in to comment.