EasyLog - Warning



EasyLog walks through all passed and returned objects fields but It should not noticeably affect the performance

If you’re passing/returning very big objects or lists/arrays in highly loaded applications and concerned about performance I’d recommend to use AS_IS style and use your own toString() methods for serialization.

Example

    @LogIt(style=AS_IS)
    public Universe bigBang(int numberOfStars) {
        ...
    }