mirror of
https://gitee.com/fastnlp/fastNLP.git
synced 2024-11-30 03:07:59 +08:00
print bug fix
This commit is contained in:
parent
0e823758b2
commit
a470994686
@ -24,4 +24,4 @@ def print(*args, sep=' ', end='\n', file=None, flush=False):
|
||||
line = sep.join(map(str, args))
|
||||
if logger.isEnabledFor(INFO):
|
||||
kwargs = logger._add_rank_info({})
|
||||
logger._log(INFO, line, **kwargs)
|
||||
logger._log(INFO, line, None, **kwargs)
|
||||
|
8
tests/core/log/test_print.py
Normal file
8
tests/core/log/test_print.py
Normal file
@ -0,0 +1,8 @@
|
||||
from fastNLP import print
|
||||
|
||||
|
||||
def test_print():
|
||||
print("a")
|
||||
print([1, 2, 3])
|
||||
print([1,2,3], [4,5,6], 'a')
|
||||
print(print)
|
Loading…
Reference in New Issue
Block a user