We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acb5f6f commit 2bca04dCopy full SHA for 2bca04d
ogc/bblocks/http_interceptor.py
@@ -74,6 +74,7 @@ def load_content(url: str):
74
local_file = local_path / rel_path
75
if not local_file.exists():
76
raise IOError(f'Local file {local_file} for URL {url} from mapping {url_mapping} does not exist')
77
+ print(f"Intercepted URL {url} -> {local_file}")
78
with open(local_file, 'rb') as f:
79
return f.read()
80
0 commit comments