Implemented Debug

pull/14/head
Sam Bosley 12 years ago
parent af5921a175
commit e9ab0a4859

@ -2,16 +2,21 @@ package com.todoroo.astrid.actfm.sync.messages;
import org.json.JSONObject; import org.json.JSONObject;
import android.text.TextUtils;
import android.util.Log;
public class Debug extends ServerToClientMessage { public class Debug extends ServerToClientMessage {
public Debug(JSONObject json) { public Debug(JSONObject json) {
super(json); super(json);
throw new RuntimeException("No constructor for Debug implemented"); //$NON-NLS-1$
} }
@Override @Override
@SuppressWarnings("nls")
public void processMessage() { public void processMessage() {
// TODO Auto-generated method stub String message = json.optString("message");
if (!TextUtils.isEmpty(message))
Log.w("actfm-debug-message", message);
} }
} }

Loading…
Cancel
Save