synchronize NSClient log
This commit is contained in:
parent
e381d197cb
commit
0b6c9845fa
1 changed files with 3 additions and 3 deletions
|
@ -159,7 +159,7 @@ public class NSClientInternalPlugin implements PluginBase {
|
||||||
MainApp.bus().post(new EventNSClientUpdateGUI());
|
MainApp.bus().post(new EventNSClientUpdateGUI());
|
||||||
}
|
}
|
||||||
|
|
||||||
void clearLog() {
|
synchronized void clearLog() {
|
||||||
handler.post(new Runnable() {
|
handler.post(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
|
@ -169,7 +169,7 @@ public class NSClientInternalPlugin implements PluginBase {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void addToLog(final EventNSClientNewLog ev) {
|
private synchronized void addToLog(final EventNSClientNewLog ev) {
|
||||||
handler.post(new Runnable() {
|
handler.post(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
|
@ -183,7 +183,7 @@ public class NSClientInternalPlugin implements PluginBase {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static void updateLog() {
|
static synchronized void updateLog() {
|
||||||
try {
|
try {
|
||||||
StringBuilder newTextLog = new StringBuilder();
|
StringBuilder newTextLog = new StringBuilder();
|
||||||
List<EventNSClientNewLog> temporaryList = new ArrayList<>(listLog);
|
List<EventNSClientNewLog> temporaryList = new ArrayList<>(listLog);
|
||||||
|
|
Loading…
Reference in a new issue