def format()

in modules/python/utils/logger_config.py [0:0]


    def format(self, record):
        vso_prefix = self.VSO_FORMATS.get(record.levelname, '')
        # Format the message without the VSO prefix first
        formatted_msg = super().format(record)
        # Then add the VSO prefix at the start
        return f"{vso_prefix}{formatted_msg}"