chore: remove debug logs

This commit is contained in:
Myzel394 2024-01-05 13:45:34 +01:00
parent c6932fd31d
commit 0372b44901
No known key found for this signature in database
GPG Key ID: 79CC92F37B3E1A2B
3 changed files with 0 additions and 17 deletions

View File

@ -294,13 +294,9 @@ abstract class BatchesFolder(
parameter
) { time ->
if (fullTime != null) {
println("**************** check24")
println(time)
println(fullTime)
onProgress(time / fullTime!!)
} else {
onProgress(null)
println("----------------- nonono")
}
}.await()
return outputFile

View File

@ -59,17 +59,6 @@ fun AudioRecordingStart(
}
}
println("wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww app: ${appSettings.saveFolder}")
val requiresExternalPerm = rememberSaveable {
appSettings.requiresExternalStoragePermission(context)
}
println("hasGranted ${requiresExternalPerm}")
val scope = rememberCoroutineScope()
fun test() {
println("appSäääääääääääääääääääääääääääääääättings ${appSettings.saveFolder}")
}
PermissionRequester(
permission = Manifest.permission.WRITE_EXTERNAL_STORAGE,
icon = Icons.Default.InsertDriveFile,
@ -81,7 +70,6 @@ fun AudioRecordingStart(
permission = Manifest.permission.RECORD_AUDIO,
icon = Icons.Default.Mic,
onPermissionAvailable = {
test()
if (appSettings.requiresExternalStoragePermission(context)) {
triggerExternalStorage()
} else {

View File

@ -94,7 +94,6 @@ fun SaveFolderTile(
}
scope.launch {
println("================= Saving saveFolder: $path")
dataStore.updateData {
it.setSaveFolder(path)
}