diff options
author | Ben Burdette <bburdette@gmail.com> | 2020-05-11 13:02:16 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2020-05-11 13:02:16 -0600 |
commit | 958e81987b5b86fba06090078a556f51037aa23c (patch) | |
tree | 1a311fc50f08ed5fc45ffc176c6ae25bc0e676d7 /src/libutil/error.cc | |
parent | 55eb71714854b262b5e1079ff250a13cc0bbf644 (diff) |
switch from printError warnings to logWarnings
Diffstat (limited to 'src/libutil/error.cc')
-rw-r--r-- | src/libutil/error.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/error.cc b/src/libutil/error.cc index ce5dde6c3..e4f45a2d3 100644 --- a/src/libutil/error.cc +++ b/src/libutil/error.cc @@ -161,7 +161,7 @@ std::ostream& operator<<(std::ostream &out, const ErrorInfo &einfo) einfo.programName.value_or("")) << std::endl; - // filename. + // filename, line, column. if (einfo.nixCode.has_value()) { if (einfo.nixCode->errPos.file != "") { out << fmt("%1%in file: " ANSI_BLUE "%2% %3%" ANSI_NORMAL, |