Browse Source

removed logging

josh 8 months ago
parent
commit
896ea4d92b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      exo/orchestration/standard_node.py

+ 2 - 2
exo/orchestration/standard_node.py

@@ -372,10 +372,10 @@ class StandardNode(Node):
     await self.broadcast_supported_engines(supported_engines)
     if len(self.get_topology_inference_engines()):
       if any(len(engines) == 1 and "tinygrad" in engines for engines in self.get_topology_inference_engines()):
-        logger.info("Found node with only tinygrad, using tinygrad on all nodes")
+        if DEBUG >= 1: print("Found node with only tinygrad, using tinygrad on all nodes")
         self.inference_engine = get_inference_engine("tinygrad", self.shard_downloader)
       else:
-        logger.info("all nodes can use mlx, using mlx for inference")
+        if DEBUG >= 1: print("All nodes can use mlx, using mlx for inference")
         self.inference_engine = get_inference_engine("mlx", self.shard_downloader) 
 
   async def periodic_topology_collection(self, interval: int):