This commit is contained in:
zzz
2016-05-29 14:56:46 +00:00
parent faebe8ab7e
commit d0594ebc77
2 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ import java.io.Writer;
* File-based log writer thread that pulls log records from the LogManager,
* writes them to the current logfile, and rotates the logs as necessary.
*
* @since 0.9.26 moved from LogWriter
*/
class FileLogWriter extends LogWriter {
// volatile as it changes on log file rotation

View File

@ -16,7 +16,7 @@ import java.util.Queue;
* the log. This also periodically instructs the LogManager to reread its config
* file.
*
* @since 0.9.19 pulled from FileLogWriter so Android may extend
* @since 0.9.19 pulled from FileLogWriter so Android may extend; renamed from LogWriterBase in 0.9.26
*/
abstract class LogWriter implements Runnable {
/** every 10 seconds? why? Just have the gui force a reread after a change?? */