From 91eff9cb4a39df689331b7b9f06a27801d2b7aab Mon Sep 17 00:00:00 2001
From: cmoineau <cyril.moineau@cea.fr>
Date: Fri, 3 May 2024 09:12:16 +0000
Subject: [PATCH] Remove annoying print in producer @olivierbichler.

---
 include/aidge/operator/Producer.hpp | 2 +-
 src/operator/Producer.cpp           | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/aidge/operator/Producer.hpp b/include/aidge/operator/Producer.hpp
index 7e9072857..238250796 100644
--- a/include/aidge/operator/Producer.hpp
+++ b/include/aidge/operator/Producer.hpp
@@ -105,7 +105,7 @@ public:
     void forward() override final;
 
     void backward() override final {
-        fmt::print("Basic Producer backward() function.\n");
+        // fmt::print("Basic Producer backward() function.\n");
     }
     void setOutput(const Aidge::IOIndex_t outputIdx, std::shared_ptr<Aidge::Data>&& data) override {
         if (getAttr<ProdAttr::Constant>()) {
diff --git a/src/operator/Producer.cpp b/src/operator/Producer.cpp
index f384c1013..c063c0b8d 100644
--- a/src/operator/Producer.cpp
+++ b/src/operator/Producer.cpp
@@ -72,9 +72,9 @@ void Aidge::Producer_Op::forward() {
     if (!backend().empty()) {
         mImpl->forward();
     }
-    else {
-        fmt::print("Basic Producer forward() function.\n");
-    }
+    // else {
+    //     fmt::print("Basic Producer forward() function.\n");
+    // }
 
     runHooks();
 }
-- 
GitLab