mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
Remove incorrect error logging from AutopsyEventPublisher
This commit is contained in:
parent
67296b8dd8
commit
2ac4d4f975
@ -162,6 +162,9 @@ public final class AutopsyEventPublisher {
|
|||||||
* @param event The event to publish.
|
* @param event The event to publish.
|
||||||
*/
|
*/
|
||||||
public void publishRemotely(AutopsyEvent event) {
|
public void publishRemotely(AutopsyEvent event) {
|
||||||
|
/*
|
||||||
|
* This is a no-op if a remote channel has not been opened.
|
||||||
|
*/
|
||||||
if (null != currentChannelName) {
|
if (null != currentChannelName) {
|
||||||
boolean published = false;
|
boolean published = false;
|
||||||
int tryCount = 1;
|
int tryCount = 1;
|
||||||
@ -181,9 +184,7 @@ public final class AutopsyEventPublisher {
|
|||||||
++tryCount;
|
++tryCount;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
logger.log(Level.SEVERE, "Attempt to publish {0} event remotely with no open channel", event.getPropertyName()); //NON-NLS
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user