Finding debugging logs

So, I found in the documentation that you can find logs using “sudo journalctl -f”. What isn’t clear is that the default log level is Verbose (which I would probably argue is too high of a level for the default). It took me forever to figure out how to get to the debug logs.

For my plugin, I just added “self.logger.transports[0].level = ‘debug’;” and viola, debug logs now show up. Just don’t forget to remove that as it could be extremely spammy for a production system.