mirror of
https://github.com/AxioDL/logvisor.git
synced 2025-12-09 05:27:47 +00:00
Update submodules; set submodule tracking branch
This commit is contained in:
2
.gitmodules
vendored
2
.gitmodules
vendored
@@ -1,6 +1,8 @@
|
|||||||
[submodule "fmt"]
|
[submodule "fmt"]
|
||||||
path = fmt
|
path = fmt
|
||||||
url = https://github.com/fmtlib/fmt
|
url = https://github.com/fmtlib/fmt
|
||||||
|
branch = master
|
||||||
[submodule "sentry"]
|
[submodule "sentry"]
|
||||||
path = sentry
|
path = sentry
|
||||||
url = https://github.com/getsentry/sentry-native.git
|
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;
|
return;
|
||||||
_vreport(severity, fmt::to_string_view<Char>(format),
|
_vreport(severity, fmt::to_string_view<Char>(format),
|
||||||
fmt::basic_format_args<fmt::buffer_context<Char>>(
|
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>
|
template <typename Char>
|
||||||
@@ -260,7 +260,7 @@ public:
|
|||||||
return;
|
return;
|
||||||
_vreportSource(severity, file, linenum, fmt::to_string_view<Char>(format),
|
_vreportSource(severity, file, linenum, fmt::to_string_view<Char>(format),
|
||||||
fmt::basic_format_args<fmt::buffer_context<Char>>(
|
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>
|
template <typename Char>
|
||||||
@@ -319,5 +319,5 @@ void quicklog(const S& format, Args&&... args) {
|
|||||||
logvisor::MainLoggers[0]->report(
|
logvisor::MainLoggers[0]->report(
|
||||||
"quick", logvisor::Info, fmt::to_string_view<Char>(format),
|
"quick", logvisor::Info, fmt::to_string_view<Char>(format),
|
||||||
fmt::basic_format_args<fmt::buffer_context<Char>>(
|
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