/usr/share/k3d/scripts/log_messages.py is in k3d-data 0.8.0.3-3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #python
import k3d
k3d.log.critical("This is a critical message!")
k3d.log.error("This is an error message!")
k3d.log.warning("This is a warning message!")
k3d.log.info("This is an informational message!")
k3d.log.debug("This is a debug message!")
k3d.ui().message("Wrote several messages to the K-3D log ... check your console output, or use Help > Open Log Window to see them.")
|