From ec2a281d66632dcbdebf144b5d42f1ab7d006367 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Fri, 28 Feb 2025 15:31:59 +0000 Subject: [PATCH] App: Capitalize exception message in `Document.cpp`. --- src/App/Document.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Document.cpp b/src/App/Document.cpp index 5df163ff77..ba0d639a76 100644 --- a/src/App/Document.cpp +++ b/src/App/Document.cpp @@ -3367,7 +3367,7 @@ int Document::_recomputeFeature(DocumentObject* Feat) return 1; } catch (std::exception& e) { - FC_ERR("exception in " << Feat->getFullName() << " thrown: " << e.what()); + FC_ERR("Exception in " << Feat->getFullName() << " thrown: " << e.what()); d->addRecomputeLog(e.what(), Feat); return 1; }