Removes debug logging.

This commit is contained in:
2021-06-20 00:35:35 -07:00
committed by Tom Hicks
parent 34e68443ae
commit 71177b92f9
3 changed files with 0 additions and 5 deletions

View File

@@ -13,7 +13,6 @@ import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import com.majinnaibu.monstercards.R;
import com.majinnaibu.monstercards.utils.Logger;
import java.util.Objects;
@@ -74,7 +73,6 @@ public class Stepper extends ConstraintLayout {
public void setValue(int value) {
int oldValue = this.mCurrentValue;
int newValue = Math.min(mMaxValue, Math.max(mMinValue, value));
Logger.logDebug(String.format("Setting stepper value value: %d, oldValue: %d, newValue: %d", value, oldValue, newValue));
if (newValue != oldValue) {
this.mCurrentValue = newValue;
if (mOnValueChangeListener != null) {

View File

@@ -61,7 +61,6 @@ public class LibraryFragment extends MCFragment {
.subscribe(new DisposableCompletableObserver() {
@Override
public void onComplete() {
Logger.logDebug("deleted");
}
@Override