Skip to content

Commit 2030acf

Browse files
author
David Erb
committed
change some info to debug
1 parent 1189a5f commit 2030acf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/dls_normsql/aiosqlite.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ async def create_table(self, table, should_commit: Optional[bool] = True):
240240

241241
sql = "CREATE TABLE %s\n(%s)" % (table.name, ",\n ".join(fields_sql))
242242

243-
logger.info("\n%s\n%s" % (sql, "\n".join(indices_sql)))
243+
logger.debug("\n%s\n%s" % (sql, "\n".join(indices_sql)))
244244

245245
await self.__connection.execute(sql)
246246

@@ -277,7 +277,6 @@ async def insert(
277277

278278
values_rows = []
279279

280-
logger.info(f"inserting {table.name} fields {list(table.fields.keys())}")
281280
insertable_fields = []
282281
for field in table.fields:
283282
# The first row is expected to define the keys for all rows inserted.

0 commit comments

Comments
 (0)