From b0b6c00a90cfcbae8dec54fd62e78e1a3dde32db Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 1 Jun 2021 18:22:15 +0200 Subject: [PATCH] Log application exit. --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index d8f41b9..3bfb4a8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -236,5 +236,7 @@ int main(int argc, char *argv[]) output::print_matches(matches, opts, input_files.size() == 1); } + LOG(log::sev::info) << "Exiting program with return code " << return_code; + return return_code; }