@@ -23,50 +23,50 @@ export interface ILogger {
2323
2424 /**
2525 * Logs a message with an associated objectName and furtherInfo at the given level.
26- * @param { LogLevel } the log level
27- * @param { string } the object in which the message is logged
28- * @param { string } the message to log
29- * @param further info about the log
26+ * @param level the log level
27+ * @param objectName name of the object in which the message is logged
28+ * @param message the message to log
29+ * @param furtherInfo further info about the log
3030 */
3131 log ( level : LogLevel , objectName : string , message : string , furtherInfo : any ) : void ;
3232
3333 /**
3434 * Logs a message with an associated objectName and furtherInfo at the error level.
35- * @param { string } the object in which the message is logged
36- * @param { string } the message to log
37- * @param further info about the log
35+ * @param objectName name of the object in which the message is logged
36+ * @param message the message to log
37+ * @param furtherInfo further info about the log
3838 */
3939 error ( objectName : string , message : string , furtherInfo ?: any ) : void ;
4040
4141 /**
4242 * Logs a message with an associated objectName and furtherInfo at the warn level.
43- * @param { string } the object in which the message is logged
44- * @param { string } the message to log
45- * @param further info about the log
43+ * @param objectName name of the object in which the message is logged
44+ * @param message the message to log
45+ * @param furtherInfo further info about the log
4646 */
4747 warn ( objectName : string , message : string , furtherInfo ?: any ) : void ;
4848
4949 /**
5050 * Logs a message with an associated objectName and furtherInfo at the info level.
51- * @param { string } the object in which the message is logged
52- * @param { string } the message to log
53- * @param further info about the log
51+ * @param objectName name of the object in which the message is logged
52+ * @param message the message to log
53+ * @param furtherInfo further info about the log
5454 */
5555 info ( objectName : string , message : string , furtherInfo ?: any ) : void ;
5656
5757 /**
5858 * Logs a message with an associated objectName and furtherInfo at the debug level.
59- * @param { string } the object in which the message is logged
60- * @param { string } the message to log
61- * @param further info about the log
59+ * @param objectName name of the object in which the message is logged
60+ * @param message the message to log
61+ * @param furtherInfo further info about the log
6262 */
6363 debug ( objectName : string , message : string , furtherInfo ?: any ) : void ;
6464
6565 /**
6666 * Logs a message with an associated objectName and furtherInfo at the trace level.
67- * @param { string } the object in which the message is logged
68- * @param { string } the message to log
69- * @param further info about the log
67+ * @param objectName name of the object in which the message is logged
68+ * @param message the message to log
69+ * @param furtherInfo further info about the log
7070 */
7171 trace ( objectName : string , message : string , furtherInfo ?: any ) : void ;
7272}
0 commit comments