jue89 / node-systemd-journald

Native bindings to journald
MIT License
28 stars 10 forks source link

How do you read journald without calling sd_journal_open? #22

Closed JonathanWilbur closed 1 year ago

JonathanWilbur commented 1 year ago

I noticed in your code that you never call sd_journal_open. Is the journal already opened by the NodeJS runtime or something?

Thanks in advance!

jue89 commented 1 year ago

This library just writes to the journal and doesn't read. Thus, sd_journal_send is the only required method for this library to work ;-)

JonathanWilbur commented 1 year ago

Oh I see. Okay. Thank you!