Skip to content

Commit 885f4b3

Browse files
fix(aegis-server): issue with trying to mount files
1 parent 2719428 commit 885f4b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aegis-server/aegis_server/server/features/validate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ def try_to_mount_file(ctx: LanguageServerContext, file_path: str):
134134
ctx.path_to_resource[path] = (location, file)
135135
ctx.data[type(file)][location] = file
136136

137-
logging.debug(f"Mounted {path} to {location}")
137+
logging.debug(f"Mounted {file_path} to {location}")
138138
return True
139139
except Exception as exc:
140-
logging.error(f"Failed to mount {path}, reloading datapack,\n{exc}")
140+
logging.error(f"Failed to mount {file_path}, reloading datapack,\n{exc}")
141141

142142
return False
143143

0 commit comments

Comments
 (0)