Search code examples
androidrealm

Turn off Android Monitor Realm logs


How can I turn off this never-ending stream of Realm logs? The huge amount of them makes using Android Monitor sad.

example


Solution

  • You need to set the log level like this

    Realm.init(context);
    RealmLog.setLevel(LogLevel.WARN);
    

    but you can see other log levels in the javadoc.