@@ -2775,7 +2775,62 @@ void
2775
2775
print (
2776
2776
Level level,
2777
2777
std::string const & text,
2778
- source_location const * loc = nullptr );
2778
+ source_location const * loc = nullptr ,
2779
+ Error const * e = nullptr );
2780
+
2781
+ namespace detail {
2782
+ template <class Arg0 , class ... Args>
2783
+ requires (!std::same_as<std::decay_t <Arg0>, Error>)
2784
+ void
2785
+ log_impl (
2786
+ Level level,
2787
+ Located<std::string_view> fs,
2788
+ Arg0&& arg0,
2789
+ Args&&... args)
2790
+ {
2791
+ std::string str = fmt::vformat (
2792
+ fs.value ,
2793
+ fmt::make_format_args (arg0, args...));
2794
+ return print (
2795
+ level,
2796
+ str,
2797
+ &fs.where );
2798
+ }
2799
+
2800
+ template <class ... Args>
2801
+ void
2802
+ log_impl (
2803
+ Level level,
2804
+ Located<std::string_view> fs,
2805
+ Error const & e,
2806
+ Args&&... args)
2807
+ {
2808
+ // When the message is an error, we send split
2809
+ // the information relevant to the user from
2810
+ // the information relevant for bug tracking
2811
+ // so that users can understand the message.
2812
+ std::string str = fmt::vformat (
2813
+ fs.value ,
2814
+ fmt::make_format_args (e.reason (), args...));
2815
+ return print (
2816
+ level,
2817
+ str,
2818
+ &fs.where ,
2819
+ &e);
2820
+ }
2821
+
2822
+ inline
2823
+ void
2824
+ log_impl (
2825
+ Level level,
2826
+ Located<std::string_view> fs)
2827
+ {
2828
+ return print (
2829
+ level,
2830
+ {},
2831
+ &fs.where );
2832
+ }
2833
+ }
2779
2834
2780
2835
/* * Format a message to the console.
2781
2836
@@ -2791,17 +2846,15 @@ print(
2791
2846
*/
2792
2847
template <class ... Args>
2793
2848
void
2794
- format (
2849
+ log (
2795
2850
Level level,
2796
2851
Located<std::string_view> fs,
2797
2852
Args&&... args)
2798
2853
{
2799
- return print (
2854
+ return detail::log_impl (
2800
2855
level,
2801
- fmt::vformat (
2802
- fs.value ,
2803
- fmt::make_format_args (args...)),
2804
- &fs.where );
2856
+ fs,
2857
+ std::forward<Args>(args)...);
2805
2858
}
2806
2859
2807
2860
/* * Report a message to the console.
@@ -2812,12 +2865,7 @@ debug(
2812
2865
Located<std::string_view> format,
2813
2866
Args&&... args)
2814
2867
{
2815
- return print (
2816
- Level::debug,
2817
- fmt::vformat (
2818
- format.value ,
2819
- fmt::make_format_args (args...)),
2820
- &format.where );
2868
+ return log (Level::debug, format, std::forward<Args>(args)...);
2821
2869
}
2822
2870
2823
2871
/* * Report a message to the console.
@@ -2828,12 +2876,7 @@ info(
2828
2876
Located<std::string_view> format,
2829
2877
Args&&... args)
2830
2878
{
2831
- return print (
2832
- Level::info,
2833
- fmt::vformat (
2834
- format.value ,
2835
- fmt::make_format_args (args...)),
2836
- &format.where );
2879
+ return log (Level::info, format, std::forward<Args>(args)...);
2837
2880
}
2838
2881
2839
2882
/* * Report a message to the console.
@@ -2844,12 +2887,7 @@ warn(
2844
2887
Located<std::string_view> format,
2845
2888
Args&&... args)
2846
2889
{
2847
- return print (
2848
- Level::warn,
2849
- fmt::vformat (
2850
- format.value ,
2851
- fmt::make_format_args (args...)),
2852
- &format.where );
2890
+ return log (Level::warn, format, std::forward<Args>(args)...);
2853
2891
}
2854
2892
2855
2893
/* * Report a message to the console.
@@ -2860,12 +2898,7 @@ error(
2860
2898
Located<std::string_view> format,
2861
2899
Args&&... args)
2862
2900
{
2863
- return print (
2864
- Level::error,
2865
- fmt::vformat (
2866
- format.value ,
2867
- fmt::make_format_args (args...)),
2868
- &format.where );
2901
+ return log (Level::error, format, std::forward<Args>(args)...);
2869
2902
}
2870
2903
2871
2904
/* * Report a message to the console.
@@ -2876,12 +2909,7 @@ fatal(
2876
2909
Located<std::string_view> format,
2877
2910
Args&&... args)
2878
2911
{
2879
- return print (
2880
- Level::fatal,
2881
- fmt::vformat (
2882
- format.value ,
2883
- fmt::make_format_args (args...)),
2884
- &format.where );
2912
+ return log (Level::fatal, format, std::forward<Args>(args)...);
2885
2913
}
2886
2914
2887
2915
} // report
0 commit comments