Skip to content

Commit 88c5bde

Browse files
committed
Updated log output slightly
1 parent 144aed6 commit 88c5bde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/murfey/workflows/spa/atlas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
def atlas_jpg_from_mrc(instrument_name: str, visit_name: str, atlas_mrc: Path):
1515
logger.debug(
16-
f"Starting workflow to create JPG image of atlas {sanitise(str(atlas_mrc))}"
16+
f"Starting workflow to create JPG image of atlas {sanitise(str(atlas_mrc))!r}"
1717
)
1818
with mrcfile.open(atlas_mrc) as mrc:
1919
data = mrc.data
@@ -40,4 +40,4 @@ def atlas_jpg_from_mrc(instrument_name: str, visit_name: str, atlas_mrc: Path):
4040

4141
im = PIL.Image.fromarray(data)
4242
im.convert(mode="L").save(atlas_jpg_file)
43-
logger.debug(f"JPG image of atlas saved as {atlas_jpg_file}")
43+
logger.debug(f"JPG image of atlas saved as {str(atlas_jpg_file)!r}")

0 commit comments

Comments
 (0)