systemd-journal-remote use case update
This commit is contained in:
parent
2162092977
commit
91877b0570
3 changed files with 15 additions and 6 deletions
|
|
@ -105,7 +105,7 @@ let PacketBuffer = class {
|
|||
/* The journalctl reading the recording */
|
||||
this.journalctl = Journal.journalctl(
|
||||
this.matchList,
|
||||
{count: "all", follow: false});
|
||||
{count: "all", follow: false, merge: true});
|
||||
this.journalctl.fail(this.handleError);
|
||||
this.journalctl.stream(this.handleStream);
|
||||
this.journalctl.done(this.handleDone);
|
||||
|
|
@ -454,7 +454,7 @@ let PacketBuffer = class {
|
|||
this.journalctl = Journal.journalctl(
|
||||
this.matchList,
|
||||
{cursor: this.cursor,
|
||||
follow: true, count: "all"});
|
||||
follow: true, merge: true, count: "all"});
|
||||
this.journalctl.fail(this.handleError);
|
||||
this.journalctl.stream(this.handleStream);
|
||||
/* NOTE: no "done" handler on purpose */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue