indexing description: "spread client (needs to be a different process than the other process!)" library: "elogger" copyright: "Copyright (c) 2006, AXA Rosenberg, and others (see copyright.txt)" author: "Ulrich Weiss, and others" license: "Eiffel Forum License v2 (see forum.txt)" date: "$Date: $" revision: "$Revision: $" archive: "$Archive: $" class ELOG_TEST_SPREAD_CLIENT inherit ELOG_SEVERITY_CONSTANTS export {NONE} all end create make feature {NONE} -- Initialization make is -- creation procedure local h: ELOG_HIERARCHY do create h.make (Warning_severity) h.root.add_appender (create {ELOG_SPREAD_APPENDER}.make ("spread appender", False)) h.root.log_warning (create {ELOG_SIMPLE_EVENT}.make ("message nr 1")) h.root.log_warning (create {ELOG_SIMPLE_EVENT}.make ("message nr 2")) h.root.log_warning (create {ELOG_SIMPLE_EVENT}.make ("message nr 3")) h.root.log_warning (create {ELOG_SIMPLE_EVENT}.make ("message nr 4")) h.root.log_warning (create {ELOG_SIMPLE_EVENT}.make ("message nr 5")) h.root.log_warning (create {ELOG_SIMPLE_EVENT}.make ("message nr 6")) h.root.log_warning (create {ELOG_SIMPLE_EVENT}.make ("message nr 7")) h.root.log_warning (create {ELOG_SIMPLE_EVENT}.make ("message nr 8")) h.close_all end end