Flush log output after each line
Otherwise the output can be out of order when redirected. Signed-off-by: Andrzej Kurek <andrzej.kurek@arm.com>
This commit is contained in:
parent
b39e3ecee6
commit
46c8256547
1 changed files with 1 additions and 0 deletions
|
@ -31,6 +31,7 @@ import traceback
|
|||
def log_line(text, prefix='depends.py'):
|
||||
"""Print a status message."""
|
||||
sys.stderr.write(prefix + ' ' + text + '\n')
|
||||
sys.stderr.flush()
|
||||
|
||||
def backup_config(options):
|
||||
"""Back up the library configuration file (config.h)."""
|
||||
|
|
Loading…
Reference in a new issue