Closed acomodi closed 3 years ago
Signed-off-by: Alessandro Comodi acomodi@antmicro.com
The warn function's output doesn't seem to be able to be redirected to a log file and is output on console despite redirection.
This PR changes the warn function to a print, so that the warning can be redirected to a log file.
warn
print
All right, closing. To suppress (or better redirect) it is actually enough to use &> <where-to-redirect>.
&> <where-to-redirect>
Signed-off-by: Alessandro Comodi acomodi@antmicro.com
The warn function's output doesn't seem to be able to be redirected to a log file and is output on console despite redirection.
This PR changes the
warn
function to aprint
, so that the warning can be redirected to a log file.