mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-17 13:19:52 +01:00
Save logs to disk.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package org.briarproject.briar.api.logging;
|
||||
|
||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.Collection;
|
||||
import java.util.logging.Handler;
|
||||
|
||||
@NotNullByDefault
|
||||
public interface PersistentLogManager {
|
||||
|
||||
Handler createLogHandler(File dir) throws IOException;
|
||||
|
||||
Collection<String> getPersistedLog(File dir) throws IOException;
|
||||
}
|
||||
Reference in New Issue
Block a user