I've stumbled over a new logging library called MentaLog. The name is weird but it looks like there are some interesting features not supported by log4j/logback, like zero-allocation, varargs, filters and encoders. Plus I like the idea of having your logs as enumerations.

Would anyone have any feedback about this logging framework?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 3 down vote accepted

I tested this logging library and I enjoyed its straightforward API. One thing I don't like about log4j/logback for example is having to get the log everywhere with:

Logger logger = LoggerFactory.getLogger("chapters.introduction.HelloWorld1");

This does not make any sense to me. MentaLog does not require any of that and still allows you to filter by class and package when you need to debug without the log noise from other classes.

I also like its programmatic configuration style. I hate having to configure log4j's XML. You should only have to care about configuration if you really need to. Providing a class file instead of XML is a nice trick, but it should have support for JRuby, Jython or BeanShell, so that we don't need to compile the configuration. The point is, you don't need to provide any configuration if you don't want/need to, and calling the log static config methods in your code is very handy.

I really think it got it right when it comes to varargs and placeholders. It supports all the best strategies out there for logging, so all folks should be happy. I am curious about how it can allocate zero memory while using varargs.

import static org.mentalog.Log.*;

// The basic and default
Warn.log(obj1, obj2, obj3);
// MentaLog will write each object separated by a space, for example:
Warn.log("good", "morning", "america");
// prints
"good morning america"

Debug.log("Something happened here!", "pos =", pos, "start =", theStart, "end =", theEnd);
// assuming your variables are integers, that will print:
"Something happened here! pos = 3 start = 3 end = 5"

Log.setNoSpaceAfterEqualSign(true);
Debug.log("Something happened here!", "pos=", pos, "start=", theStart, "end=", theEnd);
// now give:
"Something happened here! pos=3 start=3 end=5"

Log.setNoSpaceBetweenObjects(true);
Warn.log("good", "morning", "america");
// prints
"goodmorningamerica"

// placeholders
Debug.log("Something happened here! pos={} start={} end={}", pos, theStart, theEnd);
// prints
"Something happened here! pos=3 start=3 end=5"

The colors for console logging are pretty cool, but I did not like its log levels.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.