mirror of https://github.com/Desuuuu/klipper.git
klippy: Log python info at start of log
Log the python version and startup command parameters to the log. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
0041a0079d
commit
1f474742eb
|
@ -285,8 +285,10 @@ def main():
|
|||
logging.info("Starting Klippy...")
|
||||
software_version = util.get_git_version()
|
||||
if debugoutput is None:
|
||||
logging.info("Args: %s" % (sys.argv,))
|
||||
logging.info("Git version: %s" % (repr(software_version),))
|
||||
logging.info("CPU: %s" % (util.get_cpu_info(),))
|
||||
logging.info("Python: %s" % (repr(sys.version),))
|
||||
|
||||
# Start firmware
|
||||
res = 'startup'
|
||||
|
|
Loading…
Reference in New Issue