Interface MockitoLogger


  • public interface MockitoLogger
    Mockito logger.

    By default logs to console

    All mockito logging goes through this class and could be customized as usual Mockito plugin.

    Using the extension point

    Suppose you wrote an extension to customize logging, in order to tell Mockito to use it you need to put in your classpath:

    1. The implementation itself, for example org.awesome.mockito.AwesomeLogger that extends the MockitoLogger.
    2. A file "mockito-extensions/org.mockito.plugins.MockitoLogger". The content of this file is exactly a one line with the qualified name: org.awesome.mockito.AwesomeLogger.

    Note that if several mockito-extensions/org.mockito.plugins.MockitoLogger files exists in the classpath Mockito will only use the first returned by the standard ClassLoader.getResource(java.lang.String) mechanism.

    Since:
    2.23.19
    • Method Detail

      • log

        void log​(Object what)
        Log specified object.
        Parameters:
        what - to be logged