Skip to content

Commit 5331c4e

Browse files
committed
ITS3: change severity to debug
Signed-off-by: Felix Schlepper <[email protected]>
1 parent 3d254df commit 5331c4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Detectors/Upgrades/ITS3/simulation/src/DescriptorInnerBarrelITS3.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ ClassImp(DescriptorInnerBarrelITS3);
1818

1919
void DescriptorInnerBarrelITS3::createLayer(int iLayer, TGeoVolume* dest)
2020
{
21-
LOGP(info, "ITS3-IB: Creating Layer {}", iLayer);
21+
LOGP(debug, "ITS3-IB: Creating Layer {}", iLayer);
2222
mIBLayers[iLayer] = std::make_unique<ITS3Layer>(iLayer);
2323
mIBLayers[iLayer]->createLayer(dest);
2424
}
2525

2626
void DescriptorInnerBarrelITS3::createServices(TGeoVolume* dest)
2727
{
28-
LOGP(info, "ITS3-IB: Creating Services");
28+
LOGP(debug, "ITS3-IB: Creating Services");
2929
mServices = std::make_unique<ITS3Services>();
3030
mServices->createCYSSAssembly(dest);
3131
}

Detectors/Upgrades/ITS3/simulation/src/ITS3Layer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ void ITS3Layer::createLayer(TGeoVolume* motherVolume)
7676
createLayerImpl();
7777
mBuilt = true;
7878

79-
LOGP(info, "ITS3-Layer: Created Layer {} with mR={} (minR={}, maxR={})", mNLayer, mR, mRmin, mRmax);
79+
LOGP(debug, "ITS3-Layer: Created Layer {} with mR={} (minR={}, maxR={})", mNLayer, mR, mRmin, mRmax);
8080
if (motherVolume == nullptr) {
8181
return;
8282
}

0 commit comments

Comments
 (0)