summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/logging/ILogEventFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/logging/ILogEventFactory.java')
-rw-r--r--base/common/src/com/netscape/certsrv/logging/ILogEventFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/common/src/com/netscape/certsrv/logging/ILogEventFactory.java b/base/common/src/com/netscape/certsrv/logging/ILogEventFactory.java
index 1cc48a502..e61abba1b 100644
--- a/base/common/src/com/netscape/certsrv/logging/ILogEventFactory.java
+++ b/base/common/src/com/netscape/certsrv/logging/ILogEventFactory.java
@@ -33,14 +33,14 @@ public interface ILogEventFactory {
*
* @param evtClass The event type.
* @param prop The resource bundle.
- * @param source The subsystem ID who creates the log event.
+ * @param source The subsystem who creates the log event.
* @param level The severity of the log event.
* @param multiline The log message has more than one line or not.
* @param msg The detail message of the log.
* @param params The parameters in the detail log message.
* @return The created ILogEvent object.
*/
- public ILogEvent create(LogCategory evtClass, Properties prop, int source,
+ public ILogEvent create(LogCategory evtClass, Properties prop, LogSource source,
int level, boolean multiline, String msg, Object params[]);
/**