diff --git a/corsika/detail/modules/HadronicElasticModel.inl b/corsika/detail/modules/HadronicElasticModel.inl index af2827eb09055926d6235970ef44d23488b08ab1..bb5c16133ee16ebdde6cac89de9ad1dd84014191 100644 --- a/corsika/detail/modules/HadronicElasticModel.inl +++ b/corsika/detail/modules/HadronicElasticModel.inl @@ -52,7 +52,7 @@ namespace corsika { avgCrossSection += getCrossSection(s) * fractions[i]; } - CORSIKA_LOG_DEBUG("avgCrossSection: {} mb" , avgCrossSection / 1_mb ); + CORSIKA_LOG_DEBUG("avgCrossSection: {} mb", avgCrossSection / 1_mb); return avgCrossSection; }(); diff --git a/tests/framework/testProcessSequence.cpp b/tests/framework/testProcessSequence.cpp index e079093ff957e12d110075800244d8b0a128725f..e4af3534d63f3c68b37f4335c5d9135fa90bfb32 100644 --- a/tests/framework/testProcessSequence.cpp +++ b/tests/framework/testProcessSequence.cpp @@ -214,11 +214,11 @@ public: inline void doInteraction(TView& v) const { checkInteract |= 4; for (int i = 0; i < nData; ++i) v.parent().data_[i] *= 1.01; - CORSIKA_LOG_DEBUG("Process3::doInteraction" ); + CORSIKA_LOG_DEBUG("Process3::doInteraction"); } template <typename Particle> GrammageType getInteractionLength(Particle&) const { - CORSIKA_LOG_DEBUG("Process3::GetInteractionLength" ); + CORSIKA_LOG_DEBUG("Process3::GetInteractionLength"); return 30_g / (1_cm * 1_cm); }