home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / share / k3d / scripts / log_messages.py < prev    next >
Encoding:
Text File  |  2008-07-21  |  384 b   |  12 lines

  1. #python
  2.  
  3. import k3d
  4.  
  5. k3d.log.critical("This is a critical message!")
  6. k3d.log.error("This is an error message!")
  7. k3d.log.warning("This is a warning message!")
  8. k3d.log.info("This is an informational message!")
  9. k3d.log.debug("This is a debug message!")
  10.  
  11. k3d.ui().message("Wrote several messages to the K-3D log ... check your console output, or use Help > Open Log Window to see them.")
  12.