1.9.30 sync.
[gae.git] / java / src / main / com / google / appengine / api / log / LogServiceFactory.java
blob2b76ca2c139605723128ead7cfc4ccb404ded219
1 // Copyright 2011 Google Inc. All Rights Reserved.
3 package com.google.appengine.api.log;
5 import com.google.appengine.spi.ServiceFactoryFactory;
7 /**
8 * Creates {@link LogService} implementations.
11 public final class LogServiceFactory {
13 /**
14 * Creates a {@code LogService}.
16 public static LogService getLogService() {
17 return getFactory().getLogService();
20 private static ILogServiceFactory getFactory() {
21 return ServiceFactoryFactory.getFactory(ILogServiceFactory.class);