Skip to content

Commit

Permalink
MAINT: fix debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jotelha committed Nov 11, 2024
1 parent a93a248 commit 75fc51e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dtool_lookup_gui/views/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -1405,13 +1405,13 @@ async def _update_copy_button(self, selected_dataset):
self.copy_button.get_popover().update(destinations, self.on_copy_clicked)

async def _compute_dependencies(self, dataset):
_logger.debug("Compute dependencies for dataset '{dataset.uuid}'.")
_logger.debug("Compute dependencies for dataset '%s'.", dataset.uuid)
self.dependency_stack.set_visible_child(self.dependency_spinner)

# Compute dependency graph
dependency_graph = DependencyGraph()
async with ConfigurationBasedLookupClient() as lookup:
_logger.debug("Wait for depenedency graph for '{dataset.uuid}' queried from lookup server.")
_logger.debug("Wait for depenedency graph for '%s' queried from lookup server.", dataset.uuid)
await dependency_graph.trace_dependencies(lookup, dataset.uuid, dependency_keys=settings.dependency_keys)

# Show message if uuids are missing
Expand Down

0 comments on commit 75fc51e

Please sign in to comment.