aletrn commited on
Commit
bb53beb
·
1 Parent(s): 4e35839

[feat] set debug log about tile url

Browse files
Files changed (1) hide show
  1. src/io/tms2geotiff.py +1 -1
src/io/tms2geotiff.py CHANGED
@@ -137,7 +137,7 @@ def get_tile(url):
137
  retry = 3
138
  while 1:
139
  try:
140
- app_logger.info(f"image tile url to download: {url}.")
141
  r = SESSION.get(url, timeout=60)
142
  break
143
  except Exception as request_tile_exception:
 
137
  retry = 3
138
  while 1:
139
  try:
140
+ app_logger.debug(f"image tile url to download: {url}.")
141
  r = SESSION.get(url, timeout=60)
142
  break
143
  except Exception as request_tile_exception: