> +import javax.annotation.Resource;
> +import javax.inject.Inject;
> +import javax.inject.Named;
> +import javax.inject.Singleton;
> +import java.util.Set;
> +
> +import static com.google.common.base.Preconditions.checkNotNull;
> +
> +/**
> + * @author vitaly.rudenya
> + */
> +@Singleton
> +public class JoyentAsyncBlobStore extends BaseAsyncBlobStore {
> +
> + @Resource
> + protected Logger logger = Logger.CONSOLE;
Prefer initializing the logger as `Logger.NULL`. The injected implementation
can be changed at runtime when configuring the desired logging module.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/30/files#r7259744