Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ikappaki committed Jul 31, 2024
1 parent 17a1a7e commit 64fa515
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/basilisp_blender/integration/int_nrepl_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,14 @@ def test_server_start(tmp_path):
with open(codefile, "w") as file:
file.write(f'''from basilisp_blender import nrepl, log_level_set
import logging
import sys
print(":start")
sys.stdout.flush()
log_level_set(logging.DEBUG, {repr(str(logfile))})
shutdownfn = nrepl.server_start(nrepl_port_filepath={repr(str(portfile))})''')
logging.debug(":begin")
shutdownfn = nrepl.server_start(nrepl_port_filepath={repr(str(portfile))})
logging.debug(":end")
''')

process = None
try:
Expand Down

0 comments on commit 64fa515

Please sign in to comment.