Skip to content

Commit e6e77c8

Browse files
committed
log info instead of warning about remote jobs
1 parent d997e9c commit e6e77c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openquake/commonlib/readinput.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def get_params(job_ini, kw={}):
290290
job_ini = str(job_ini)
291291
if job_ini.startswith(('http://', 'https://')):
292292
resp = requests.get(job_ini)
293-
logging.warning('Remote ini [%s] status: %d content length: %d' %
293+
logging.info('Remote ini [%s] status: %d content length: %d' %
294294
(job_ini, resp.status_code, len(resp.content)))
295295

296296
job_ini = gettemp(suffix='.zip')

0 commit comments

Comments
 (0)