#114 Actually use the logger to log things
Merged 3 years ago by mobrien. Opened 3 years ago by pingou.

file modified
+2
@@ -118,12 +118,14 @@ 

          """ Function to print information.

  

          Is a function to help with the test suite. """

+         _log.info(msg)

          print(msg)

  

      def debug(self, msg):

          """ Function to print if in debug mode.

  

          Function to help in test. """

+         _log.debug(msg)

          if self.is_debug:

              self.info(msg)

  

Otherwise, surprisingly, we cannot find anything in the logs when we
actually try to see/check the logs server side...

Signed-off-by: Pierre-Yves Chibon pingou@pingoured.fr

Pull-Request has been merged by mobrien

3 years ago
Metadata