File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -717,29 +717,32 @@ void Connection::logExecutionException(const std::string_view where,
717717 callstack.emplace_back (frame);
718718 });
719719 LOG_ERROR (
720- " {}: Exception occurred during {}. Closing connection: "
720+ " {}: Exception occurred during {}. Closing connection {} : "
721721 " {}. Cookies: {} Exception thrown from: {}" ,
722722 getId (),
723723 where,
724+ getDescription (),
724725 e.what (),
725726 array.dump (),
726727 callstack.dump ());
727728 } else {
728729 LOG_ERROR (
729- " {}: Exception occurred during {}. Closing connection: "
730+ " {}: Exception occurred during {}. Closing connection {} : "
730731 " {}. Cookies: {}" ,
731732 getId (),
732733 where,
734+ getDescription (),
733735 e.what (),
734736 array.dump ());
735737 }
736738 } catch (const std::exception& exception2) {
737739 try {
738740 LOG_ERROR (
739741 " {}: Second exception occurred during {}. Closing "
740- " connection: e:{} exception2:{}" ,
742+ " connection {} : e:{} exception2:{}" ,
741743 getId (),
742744 where,
745+ getDescription (),
743746 e.what (),
744747 exception2.what ());
745748 if (const auto * backtrace = cb::getBacktrace (e)) {
You can’t perform that action at this time.
0 commit comments