← Back to context

Comment by pjmlp

1 month ago

Really, which ones?

Because anything Java, .NET and Python, it certainly requires configuration and related infrastructure.

> .NET

I think you haven't used .NET in a while. Nowadays, logging is absurdly easy to configure. Heck, you usually don't even need to configure it, because the basics are already included in most templates. You just use the Logger class and it works.

The only time you have to spend more than 30 minutes on it is when you use some external logging libraries. And most of them are quite sane and simple to use, because it's so easy to create a custom logging provider.

  • I use it almost every day.

    Java, .NET and nodejs are all over the place around here.

    The point was without configuration.

    Logger class doesn't do the work for production monitoring, without additional configuration so that its output appears on the necessary production dashboards.

Log4j can be as simple as add the dependency and you're good to go. Of course, you can do fancier setups and bridge your logs wherever where it is more work, but out of the box, it's very straightforward and batteries included. I have a very hard time believing you're seriously arguing the case that some of the most commonly used languages don't have good options for logging.

  • Which Java framework has log4j working out of the box for serious production deployment?

    • Spring Boot for example, which is arguably one of the most common ways to do Java anything these days. If you're trying to make a point, it would be considerably easier if you just said what you mean, because so far you're not making one. You could've easily looked up any of these questions.

      5 replies →