Skip to content

Commit 555174d

Browse files
maarztctrueden
authored andcommitted
LogService: improve javadoc
1 parent 1593cc8 commit 555174d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/main/java/org/scijava/log/LogService.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,13 @@
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
*/
4849
public 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

Comments
 (0)