armory/blender/arm/log.py

18 lines
321 B
Python
Raw Normal View History

2016-10-19 13:28:06 +02:00
2017-03-15 12:30:14 +01:00
info_text = ''
2016-10-19 13:28:06 +02:00
def clear():
2017-03-15 12:30:14 +01:00
global info_text
info_text = ''
2016-10-19 13:28:06 +02:00
def format_text(text):
2018-06-18 12:50:37 +02:00
return (text[:80] + '..') if len(text) > 80 else text # Limit str size
2016-11-12 18:30:39 +01:00
2016-10-19 13:28:06 +02:00
def print_info(text):
2017-03-15 12:30:14 +01:00
global info_text
2016-10-19 13:28:06 +02:00
print(text)
2017-03-15 12:30:14 +01:00
info_text = format_text(text)
2016-11-05 20:57:04 +01:00
def warn(text):
print('Armory Warning: ' + text)