1 /*
2  * Copyright (c) 2007 Mockito contributors
3  * This program is made available under the terms of the MIT License.
4  */
5 package org.mockito.internal.util;
6 
7 public class ConsoleMockitoLogger implements MockitoLogger {
8 
9     /* (non-Javadoc)
10      * @see org.mockito.internal.util.Logger#print(java.lang.Object)
11      */
log(Object what)12     public void log(Object what) {
13         System.out.println(what);
14     }
15 }
16