Skip to content

Commit

Permalink
Fix logs
Browse files Browse the repository at this point in the history
  • Loading branch information
vargasa committed Jul 30, 2019
1 parent 1f01a45 commit 5c61b4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Fireworks/Core/src/FWGeometryTableViewManager.cc
Expand Up @@ -104,8 +104,7 @@ void FWGeometryTableViewManager::setGeoManagerFromFile() {
throw std::runtime_error("Can't find TGeoManager object in selected file.");

} catch (std::runtime_error& e) {
fwLog(fwlog::kError)
<< "Failed to find simulation geometry file. Please set the file path with --sim-geom-file option.\n";
fwLog(fwlog::kError) << e.what();
exit(0);
}
}
2 changes: 1 addition & 1 deletion Fireworks/FWInterface/src/FWFFLooper.cc
Expand Up @@ -453,7 +453,7 @@ void FWFFLooper::requestChanges(const std::string& moduleLabel, const edm::Param
//______________________________________________________________________________

void FWFFLooper::remakeGeometry(const DisplayGeomRecord& dgRec) {
fwLog(fwlog::kInfo) << "FWFFLooper set TGeo geomtery from DisplayGeomRecord.\n";
fwLog(fwlog::kInfo) << "FWFFLooper set TGeo geometry from DisplayGeomRecord.\n";

edm::ESHandle<TGeoManager> geom;
dgRec.get(geom);
Expand Down

0 comments on commit 5c61b4c

Please sign in to comment.