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 Debug_int: INTEGER is 10000 debug_p: L4E_PRIORITY -- Debug priority designates fine-grained -- informational events that are most useful -- to debug an application. Error_int: INTEGER is 40000 error_p: L4E_PRIORITY -- Error priority designates error events. Fatal_int: INTEGER is 50000 fatal_p: L4E_PRIORITY -- Fatal priority designates very severe error events -- that will presumably lead the application to abort. Info_int: INTEGER is 20000 info_p: L4E_PRIORITY -- Info priority designates informational -- messages that highlight the progress of -- the application at coarse-grained level. Warn_int: INTEGER is 30000 warn_p: L4E_PRIORITY -- Warn priority designates potentially -- harmful situations. invariant -- from ANY reflexive_equality: standard_is_equal (Current) reflexive_conformance: conforms_to (Current) end -- class L4E_PRIORITY_CONSTANTS
Classes Clusters Cluster hierarchy Relations Contracts Flat contracts Go to:

Goanna Log4E -- Copyright © 2002 Glenn Maughan