Skip to content

Commit 1c9c88d

Browse files
authoredFeb 24, 2025··
Merge pull request #372 from mach3-software/dbarrow257/feature/SpamStop
feat: Stop the spammy message for additional splines
2 parents f828b14 + 017a8b4 commit 1c9c88d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎cmake/Modules/NuOscillatorSetup.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ set(CMAKE_CUDA_ARCHITECTURES_STRING ${CMAKE_CUDA_ARCHITECTURES})
6262
string(REPLACE " " ";" CMAKE_CUDA_ARCHITECTURES_STRING "${CMAKE_CUDA_ARCHITECTURES}")
6363

6464
if(NOT DEFINED MaCh3_NuOscillatorBranch)
65-
set(MaCh3_NuOscillatorBranch "v1.2.1")
65+
set(MaCh3_NuOscillatorBranch "v1.2.2")
6666
endif()
6767

6868
#Try adding Oscillator Class

‎splines/splineFDBase.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ void splineFDBase::FillSampleArray(std::string SampleName, std::vector<std::stri
906906

907907
// If the syst doesn't match any of the spline names then skip it
908908
if (SystNum == -1){
909-
MACH3LOG_WARN("Couldn't match!!");
909+
MACH3LOG_DEBUG("Couldn't match!!");
910910
MACH3LOG_DEBUG("Couldn't Match any systematic name in xsec yaml with spline name: {}" , FullSplineName);
911911
continue;
912912
}

0 commit comments

Comments
 (0)
Please sign in to comment.