Skip to content

Commit

Permalink
clean up old logging
Browse files Browse the repository at this point in the history
  • Loading branch information
newhinton committed Nov 8, 2023
1 parent 9381da6 commit be4dccf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
9 changes: 0 additions & 9 deletions app/src/main/java/ca/pkay/rcloneexplorer/Rclone.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import android.net.Uri;
import android.os.Build;
import android.os.Environment;
import android.util.Log;
import android.webkit.MimeTypeMap;
import android.widget.Toast;

Expand Down Expand Up @@ -412,10 +411,6 @@ private Process getRuntimeProcess(String[] command, String[] env) throws IOExcep
FLog.e("rclone", "Error executing rclone!" +e.getMessage());
throw new IOException("Error executing rclone!" +e.getMessage());
}

for (String t:command) {
Log.e("TAG", "opt2: "+t);
}
return Runtime.getRuntime().exec(command, env);
}

Expand Down Expand Up @@ -501,10 +496,6 @@ public Process config(String task, List<String> options) {

System.arraycopy(opt, 0, commandWithOptions, command.length, opt.length);

for (String t:commandWithOptions) {
Log.e("TAG", "opt: "+t);
}

try {
return getRuntimeProcess(commandWithOptions);
} catch (IOException e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,6 @@ class DynamicRemoteConfigFragment(private val mProviderTitle: String, private va
override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {}
override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {
mOptionMap[option] = s.toString()
Log.e(TAG, "text len: ${s.length} $s")
}
override fun afterTextChanged(s: Editable) {}
})
Expand Down Expand Up @@ -522,7 +521,7 @@ class DynamicRemoteConfigFragment(private val mProviderTitle: String, private va
}
}
for ((key, value) in mOptionMap) {
Log.e("TAG", "key: $key value: $value (${value.length})")
//Log.e("TAG", "key: $key value: $value (${value.length})")
options.add(key)
options.add(value)
}
Expand Down

0 comments on commit be4dccf

Please sign in to comment.