예제 #1
0
 def log(msg, status='info'):
     """
     ```python
     input: str
     return: None
     ```
     Wrapper around log object to verify that output from GUI is going to gui.log
     """
     log.log(status)(msg, log.LogType.gui)
예제 #2
0
파일: switch_sim.py 프로젝트: duysPES/svg
 def log(self, msg, status):
     """
     ```python
     input: str, LogType
     return: None
     ```
     Wrapper around log function for easy redirecting of server stdout to file.
     """
     log.log(status)(msg=msg, to=log.LogType.server)
예제 #3
0
파일: rust_lisc.py 프로젝트: duysPES/svg
    def log(self, msg, status):
        """
        ```python
        input: str, LogType
        return: None
        ```

        Wrapper around log for quick logging api calls
        """

        log.log(status)(msg=msg, to=log.LogType.gui)
예제 #4
0
파일: thread.py 프로젝트: duysPES/pasi
 def join(self):
     for name, thread in self.__threads.items():
         log("info")(f"Waiting for thread: `{name}`` to finish",
                     LogType.gui)
         thread.join()
예제 #5
0
파일: states_sim.py 프로젝트: duysPES/svg
 def log(self, msg, status):
     log.log(status)(msg=msg, to=log.LogType.gui)
예제 #6
0
파일: db.py 프로젝트: duysPES/pasi
 def log(self, msg, status='info'):
     log.log(status)(msg, log.LogType.gui)