3838 * Interface for the logging service.
3939 * <p>
4040 * The service supports five common logging levels: {@link #ERROR},
41- * {@link #WARN}, {@link #INFO}, {@link #TRACE} and {@link #DEBUG}. It provides
42- * methods for logging messages, exception stack traces and combinations of the
43- * two.
41+ * {@link #WARN}, {@link #INFO}, {@link #TRACE} and {@link #DEBUG}. It is
42+ * extensible to additional levels as needed. It provides methods for logging
43+ * messages, exception stack traces and combinations of the two.
4444 * </p>
4545 *
4646 * @author Curtis Rueden
47+ * @author Matthias Arzt
4748 */
4849public interface LogService extends SciJavaService , Logger {
4950
@@ -52,7 +53,7 @@ public interface LogService extends SciJavaService, Logger {
5253
5354 String LOG_LEVEL_BY_SOURCE_PROPERTY = "scijava.log.level.source" ;
5455
55- /** Changes the log level of the root logger */
56+ /** Changes the log level of the root logger. */
5657 void setLevel (int level );
5758
5859 /**
@@ -69,7 +70,7 @@ public interface LogService extends SciJavaService, Logger {
6970
7071 /**
7172 * Setting the log level for loggers depending on their {@link LogSource}.
72- * This will only effect loggers that are created after is method has been
73+ * This will only affect loggers that are created after this method has been
7374 * called.
7475 */
7576 void setLevelForLogger (String source , int level );
0 commit comments