Skip to content

Commit af7984b

Browse files
Merge pull request #376 from ldecicco-USGS/main
Fixes #375
2 parents e1630e6 + b000394 commit af7984b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/runSurvReg.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runSurvReg <- function(estPtYear, estPtLQ, DecLow, DecHigh, Sample,
4747

4848
localSample <- Sample
4949
if(any(is.na(localSample$LogQ))){
50-
message("Removing Sample data that does not have corresponding flow data")
50+
if (verbose) message("Removing Sample data that does not have corresponding flow data")
5151
localSample <- localSample[!is.na(localSample$LogQ),]
5252
}
5353
numSamples <- length(localSample$DecYear)

0 commit comments

Comments
 (0)