Skip to content

Commit

Permalink
Cleaning up log writing statmenets
Browse files Browse the repository at this point in the history
  • Loading branch information
pgmccann committed Jun 14, 2018
1 parent 0a93607 commit 3066793
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,6 @@ public void onNothingSelected(AdapterView<?> parent) {

public void onDateSet(DatePicker view, int year, int month, int day) {
String tag = view.getTag().toString();
Log.w("DatePicker", tag);
Calendar c = Calendar.getInstance();
c.set(year, month, day);
if (tag == "fishing_activity_date") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,6 @@ public void onTimeSet(TimePicker timePicker, int hour, int minute) {
c.set(Calendar.HOUR_OF_DAY, hour);
c.set(Calendar.MINUTE, minute);
this.timeSeen = c.getTime();
Log.e("REC_OBS", "Time: " + this.timeSeen.toString());
nextSection();
}

Expand Down Expand Up @@ -433,7 +432,6 @@ public void onSuccess(Location location) {
}
});
if (this.locationSeen != null) {
Log.e("REC_OBS", this.locationSeen.getCoordinates());
nextSection();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ public void onStatusChanged(String provider, int status, Bundle extras) {
private void writeLocation() {
if (mLastLocation != null) {
final CatchDatabase db = CatchDatabase.getInstance(getApplicationContext());
Log.e("LOCATION", mLastLocation.getLatitude() + "/" + mLastLocation.getLongitude());
//Database queries need their own thread
Runnable r = new Runnable() {
@Override
Expand Down

0 comments on commit 3066793

Please sign in to comment.