Skip to content

Commit 4cece77

Browse files
committed
Remove stray cout printing.
1 parent 00fdb90 commit 4cece77

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/fluxsource/scpfluxsource.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include "fluxsource/fluxsource.h"
77
#include "scp.h"
88
#include "proto.h"
9+
#include "lib/logger.h"
910
#include "fmt/format.h"
1011
#include <fstream>
1112

@@ -49,9 +50,9 @@ class ScpFluxSource : public TrivialFluxSource
4950
if ((_header.cell_width != 0) && (_header.cell_width != 16))
5051
Error() << "currently only 16-bit cells in SCP files are supported";
5152

52-
std::cout << fmt::format("SCP tracks {}-{}, heads {}-{}\n",
53+
Logger() << fmt::format("SCP: tracks {}-{}, heads {}-{}",
5354
trackno(_header.start_track), trackno(_header.end_track), startSide, endSide);
54-
std::cout << fmt::format("SCP sample resolution: {} ns\n", _resolution);
55+
Logger() << fmt::format("SCP sample resolution: {} ns\n", _resolution);
5556
}
5657

5758
public:

0 commit comments

Comments
 (0)