We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is first library where i can't even use const char* as string...
const char* tt = "test {}"; spdlog::debug(tt, std::source_location::current().file_name());
Is throwing a nice error
NOthing in docs of fmt work, any way to solve it or i just need to abandon fmt and spd?
The text was updated successfully, but these errors were encountered:
Use fmt::runtime() to avoid compile-time-check: https://fmt.dev/11.0/api/#compile-time-checks
fmt::runtime()
const char* tt = "test {}"; - spdlog::debug(tt, std::source_location::current().file_name()); + spdlog::debug(fmt::runtime(tt), std::source_location::current().file_name());
Sorry, something went wrong.
Finally working solution! Thanks a lot tt4g! You can close this issue, i was sitting over it nearly 2 weeks and wanted to abandon spd and fmt.
Please please close this issue. I can't close this issue because I'm not the maintainer of this repository.
No branches or pull requests
This is first library where i can't even use const char* as string...
Is throwing a nice error
NOthing in docs of fmt work, any way to solve it or i just need to abandon fmt and spd?
The text was updated successfully, but these errors were encountered: