EPrintLevel

From ZDoom Wiki
Jump to navigation Jump to search
Note: This page describes the flags defined in the EPrintLevel enum. It's mainly meant to be included into other pages that describe functions that use print levels, such as Console, using the {{: EPrintLevel}} syntax. (This note will not be included.)
  • PRINT_LOW — pickup messages
  • PRINT_MEDIUM — death messages
  • PRINT_HIGH — critical messages
  • PRINT_CHAT — chat messages
  • PRINT_TEAMCHAT — chat messages from a teammate
  • PRINT_LOG — only to logfile
  • PRINT_BOLD — a global message, such as printed with A_PrintBold
  • PRINT_TYPES — bitmask (Need more info)
  • PRINT_NONOTIFY — do not add to notify buffer; this means the message will not be printed to the console
  • PRINT_NOLOG — do not save to logfile
Note: logfile can be created by launching GZDoom with the -logfile mylogfile.txt command line parameter. This will write console log into a txt file of your choice (the file will be overwritten on every launch).