> @@ -92,8 +99,11 @@ Here are the dependencies needed to use google's 
> UrlFetchService::
>  jclouds will by default use JDK logging.  To switch to log4J or slf4j, you 
> have to add a logging module to your configuration code:
>  
>  {% highlight java %}
> -BlobStoreContext context = new 
> BlobStoreContextFactory().createContext(provider, identity, credential, 
> -                                                                             
> ImmutableSet.<Module>of(new Log4JLoggingModule()));
> +BlobStoreContext context = ContextBuilder.newBuilder(provider)
> +                      .credentials(identity, credential)
> +                      .modules(ImmutableSet.of(
> +                                  new Log4JLoggingModule()))

[minor] Wrapping?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds.github.com/pull/146/files#r4945537

Reply via email to