MCPcopy Index your code
hub / github.com/bugy/script-server / __init__

Method __init__

src/execution/logging.py:113–124  ·  view source on GitHub ↗
(self, output_folder, log_name_creator, authorizer)

Source from the content-addressed store, hash-verified

111
112class ExecutionLoggingService:
113 def __init__(self, output_folder, log_name_creator, authorizer):
114 self._output_folder = output_folder
115 self._log_name_creator = log_name_creator
116 self._authorizer = authorizer
117
118 self._visited_files = set()
119 self._ids_to_file_map = {}
120 self._output_loggers = {}
121
122 file_utils.prepare_folder(output_folder)
123
124 self._renew_files_cache()
125
126 def start_logging(self, execution_id,
127 user_name,

Callers

nothing calls this directly

Calls 1

_renew_files_cacheMethod · 0.95

Tested by

no test coverage detected