Skip to content

Commit

Permalink
removed more test prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Helveg committed Dec 4, 2023
1 parent 905fb0b commit c112515
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions glia/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ def glia_cli():
def compile(args):
if _mpi.main_node:
print("Glia is compiling...")
print("huh")
_manager.compile()
print("huh2")
if _mpi.main_node:
print("Compilation complete!")
assets, _, _ = _manager._collect_asset_state()
Expand Down Expand Up @@ -164,8 +162,8 @@ def _show_asset(asset):
pref_mod = None
try:
pref_mod = _manager.resolver.resolve_preference(asset)
except ResolveError as _:
print("resolve error", _)
except ResolveError as e:
print("resolve error", e)
pass
pref_string = ""
if "package" in preference:
Expand Down

0 comments on commit c112515

Please sign in to comment.