(self, obj: object, *, tag: str = "")
| 106 | return pid_chain |
| 107 | |
| 108 | def log_object(self, obj: object, *, tag: str = "") -> None: |
| 109 | tag = f"{self._tag}.{tag}.{self.get_pids()}".strip(".") |
| 110 | |
| 111 | for storage in [self.storage] + self.other_storages: |
| 112 | storage.log(obj, tag=tag) |
| 113 | |
| 114 | def _log(self, level: str, msg: str, *, tag: str = "", raw: bool = False) -> None: |
| 115 | caller_info = get_caller_info(level=3) |