Fixing a typo in logger initialization (#7341)

This commit is contained in:
Puneet Jaiswal 2019-03-26 09:38:28 -07:00 committed by Benedict Jin
parent bca40dcdaf
commit 105b4fa237
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ import java.util.concurrent.Executor;
)
public class CliRealtimeExample extends ServerRunnable
{
private static final Logger log = new Logger(CliBroker.class);
private static final Logger log = new Logger(CliRealtimeExample.class);
@Inject
private Properties properties;