Skip to content

Commit

Permalink
Merge pull request #104 from ajkannan/master
Browse files Browse the repository at this point in the history
Remove log that credentials aren't provided.
  • Loading branch information
pcostell committed Apr 7, 2016
2 parents 593b428 + 914db8e commit a3db250
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ public Datastore create(DatastoreOptions options) throws IllegalArgumentExceptio
*/
public HttpRequestFactory makeClient(DatastoreOptions options) {
Credential credential = options.getCredential();
if (credential == null) {
logger.info("Not using any credentials");
}
HttpTransport transport = options.getTransport();
if (transport == null) {
transport = credential == null ? new NetHttpTransport() : credential.getTransport();
Expand Down

0 comments on commit a3db250

Please sign in to comment.