mirror of
https://github.com/AxioDL/logvisor.git
synced 2025-12-08 13:15:09 +00:00
Compare commits
1 Commits
bb113e03f8
...
33e7322595
| Author | SHA1 | Date | |
|---|---|---|---|
| 33e7322595 |
2
.gitmodules
vendored
2
.gitmodules
vendored
@@ -1,6 +1,8 @@
|
||||
[submodule "fmt"]
|
||||
path = fmt
|
||||
url = https://github.com/fmtlib/fmt
|
||||
branch = master
|
||||
[submodule "sentry"]
|
||||
path = sentry
|
||||
url = https://github.com/getsentry/sentry-native.git
|
||||
branch = master
|
||||
|
||||
2
fmt
2
fmt
Submodule fmt updated: 9bdd1596ce...95da484727
@@ -236,7 +236,7 @@ public:
|
||||
return;
|
||||
_vreport(severity, fmt::to_string_view<Char>(format),
|
||||
fmt::basic_format_args<fmt::buffer_context<Char>>(
|
||||
fmt::internal::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
|
||||
fmt::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
|
||||
}
|
||||
|
||||
template <typename Char>
|
||||
@@ -260,7 +260,7 @@ public:
|
||||
return;
|
||||
_vreportSource(severity, file, linenum, fmt::to_string_view<Char>(format),
|
||||
fmt::basic_format_args<fmt::buffer_context<Char>>(
|
||||
fmt::internal::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
|
||||
fmt::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
|
||||
}
|
||||
|
||||
template <typename Char>
|
||||
@@ -319,5 +319,5 @@ void quicklog(const S& format, Args&&... args) {
|
||||
logvisor::MainLoggers[0]->report(
|
||||
"quick", logvisor::Info, fmt::to_string_view<Char>(format),
|
||||
fmt::basic_format_args<fmt::buffer_context<Char>>(
|
||||
fmt::internal::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
|
||||
fmt::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
|
||||
}
|
||||
|
||||
2
sentry
2
sentry
Submodule sentry updated: aee5dc1a55...6d71367b17
Reference in New Issue
Block a user