Classes Clusters Cluster hierarchy Relations Contracts Flat contracts Go to:
indexing description: "Logging priorities." project: "Project Goanna <http://sourceforge.net/projects/goanna>" library: "log4e" date: "$Date$" revision: "$Revision$" author: "Glenn Maughan <glennmaughan@goanna.info>" copyright: "Copyright (c) 2002 Glenn Maughan" license: "Eiffel Forum License v1 (see forum.txt)." class interface L4E_PRIORITY_CONSTANTS feature -- Constants Fatal_int: INTEGER is 50000 Error_int: INTEGER is 40000 Warn_int: INTEGER is 30000 Info_int: INTEGER is 20000 Debug_int: INTEGER is 10000 fatal_p: L4E_PRIORITY -- Fatal priority designates very severe error events -- that will presumably lead the application to abort. error_p: L4E_PRIORITY -- Error priority designates error events. warn_p: L4E_PRIORITY -- Warn priority designates potentially -- harmful situations. info_p: L4E_PRIORITY -- Info priority designates informational -- messages that highlight the progress of -- the application at coarse-grained level. debug_p: L4E_PRIORITY -- Debug priority designates fine-grained -- informational events that are most useful -- to debug an application. end -- class L4E_PRIORITY_CONSTANTS
Classes Clusters Cluster hierarchy Relations Contracts Flat contracts Go to:

Goanna Log4E -- Copyright © 2002 Glenn Maughan