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.
log.warn
log.warning
1 parent ae320db commit 5377e40Copy full SHA for 5377e40
easybuild/tools/filetools.py
@@ -2240,7 +2240,7 @@ def det_size(path):
2240
if os.path.exists(fullpath):
2241
installsize += os.path.getsize(fullpath)
2242
except OSError as err:
2243
- _log.warn("Could not determine install size: %s" % err)
+ _log.warning("Could not determine install size: %s" % err)
2244
2245
return installsize
2246
test/framework/build_log.py
@@ -208,7 +208,7 @@ def test_log_levels(self):
208
log.error('kaput')
209
log.deprecated('almost kaput', '10000000000000')
210
log.raiseError = True
211
- log.warn('this is a warning')
+ log.warning('this is a warning')
212
log.info('fyi')
213
log.debug('gdb')
214
log.devel('tmi')
0 commit comments