diff --git a/packages/v1/administrativo/repositories/log/log_show_database_repository.py b/packages/v1/administrativo/repositories/log/log_show_database_repository.py index 2b53c03..1fa0d59 100644 --- a/packages/v1/administrativo/repositories/log/log_show_database_repository.py +++ b/packages/v1/administrativo/repositories/log/log_show_database_repository.py @@ -40,6 +40,9 @@ class ShowDatabaseRepository(BaseRepository): # Execução para buscar a estrutura padrão (sem parâmetros) structure_database = self.fetch_one(sql_standard_structure) + + structure_preview = str(structure_database) + print(structure_preview[:2000]) # O campo 'structure' contém o JSON da estrutura padrão (como string) standard_structure_json = structure_database.get('structure') if structure_database else None