Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated LogglyClient.java for tag support #1

Closed
wants to merge 7 commits into from
Prev

Fixed Whitespace issues

  • Loading branch information
varshneyjayant committed Aug 12, 2015
commit e352d09085a5609cc543f263fb947fb413b4af6c
@@ -27,6 +27,7 @@

/**
* Loggly client
*
* @author tony19@gmail.com
*/
public class LogglyClient implements ILogglyClient {
@@ -47,8 +48,8 @@ public LogglyClient(String token) {
}

RestAdapter restAdapter = new RestAdapter.Builder()
.setEndpoint(API_URL)
.build();
.setEndpoint(API_URL)
.build();

this.token = token;
this.loggly = restAdapter.create(ILogglyRestService.class);
@@ -190,7 +191,7 @@ public void logBulk(Collection<String> messages, final Callback callback) {
tags,
new TypedString(parcel),
new retrofit.Callback<LogglyResponse>() {
public void success(LogglyResponse logglyResponse,Response response) {
public void success(LogglyResponse logglyResponse, Response response) {
callback.success();
}

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.