Skip to content

Commit

Permalink
Update deprecated warning logging
Browse files Browse the repository at this point in the history
  • Loading branch information
knabar committed Dec 8, 2023
1 parent fdc161b commit 0c85975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omeroweb/webclient/controller/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ def getFilesByObject(self, parent_type=None, parent_ids=None):
)
rows = q.projection(query, params, self.conn.SERVICE_OPTS)

logger.warn(f"TOTAL FILES: {total_files}")
logger.warning(f"TOTAL FILES: {total_files}")
return (
total_files,
[self.FileAnnotationShim(_id, name) for (_id, name) in rows],
Expand Down

0 comments on commit 0c85975

Please sign in to comment.