From 31bc9cf98816ea333d2651a3324c0fab44efd5cd Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Mon, 24 Aug 2020 08:52:00 +0200 Subject: [PATCH] spiFlash: drop annoying message in write_enable method --- src/spiFlash.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/spiFlash.cpp b/src/spiFlash.cpp index db50860..0dbcccb 100644 --- a/src/spiFlash.cpp +++ b/src/spiFlash.cpp @@ -263,8 +263,6 @@ int SPIFlash::write_enable() return -1; } - if (_verbose) - std::cout << "write en: Success" << std::endl; return 0; }