I have setup a "hello world" nodejs application using the DirectAdmin UI. The nodejs application works fine (it's responding to HTTP requests).
However, console.log("test") does not end up in the configured log-file. Is there some special trick I need to do?
If I try to include extensions that does not exist, I see the errors ending up in the log-file correctly, but the console.log messages are simply ignored.
I guess I could make some manual function that writes to a text-file, but I would prefer the standard console.log command to work
However, console.log("test") does not end up in the configured log-file. Is there some special trick I need to do?
If I try to include extensions that does not exist, I see the errors ending up in the log-file correctly, but the console.log messages are simply ignored.
I guess I could make some manual function that writes to a text-file, but I would prefer the standard console.log command to work