summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Logger.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Logger.idl')
-rw-r--r--TAO/orbsvcs/orbsvcs/Logger.idl23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Logger.idl b/TAO/orbsvcs/orbsvcs/Logger.idl
deleted file mode 100644
index 8f3274164c1..00000000000
--- a/TAO/orbsvcs/orbsvcs/Logger.idl
+++ /dev/null
@@ -1,23 +0,0 @@
-// $Id$
-
-interface Logger
-{
- // = TITLE
- // Used to log messages to a logging server.
- //
- // = DESCRIPTION
- // @@ This interface is very simple-minded and can certainly be
- // improved, e.g., by passing over more interesting logging
- // records similar to what we do in <ACE_Log_Msg>.
- oneway void log (in string message);
- // Transmit a Log_Record to the logging server.
-};
-
-interface Logger_Factory
-{
- // = TITLE
- // Create a <Logger> of type <name>.
-
- Logger make_logger (in string name);
-};
-