mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-27 17:34:44 +01:00
Fix log
This commit is contained in:
parent
b00ec570f6
commit
68fcba6f54
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ class AppEventListener<T> {
|
|||
|
||||
void begin() {
|
||||
if (_subscription != null) {
|
||||
_log.warning("[beginListenEvent] Already listening");
|
||||
_log.warning("[begin] Already listening");
|
||||
return;
|
||||
}
|
||||
_subscription = _stream.listen(_listener);
|
||||
|
@ -23,7 +23,7 @@ class AppEventListener<T> {
|
|||
|
||||
void end() {
|
||||
if (_subscription == null) {
|
||||
_log.warning("[endListenEvent] Already not listening");
|
||||
_log.warning("[end] Already not listening");
|
||||
return;
|
||||
}
|
||||
_subscription?.cancel();
|
||||
|
|
Loading…
Add table
Reference in a new issue