Fix Log -> Timber transition leftovers

This commit is contained in:
Kirill Kamakin
2021-11-07 20:46:33 +03:00
parent 080ccab2de
commit 39bac99e16

View File

@@ -14,8 +14,6 @@ import dagger.hilt.android.AndroidEntryPoint
import gq.kirmanak.mealie.databinding.FragmentAuthenticationBinding
import timber.log.Timber
private const val TAG = "AuthenticationFragment"
@AndroidEntryPoint
class AuthenticationFragment : Fragment() {
private var _binding: FragmentAuthenticationBinding? = null
@@ -88,7 +86,7 @@ class AuthenticationFragment : Fragment() {
inputLayout: TextInputLayout,
errorText: () -> String
): String? {
Timber.v("checkIfInputIsEmpty() called with: input = " + input + ", inputLayout = " + inputLayout + ", errorText = " + errorText)
Timber.v("checkIfInputIsEmpty() called with: input = $input, inputLayout = $inputLayout, errorText = $errorText")
val text = input.text?.toString()
Timber.d("Input text is \"$text\"")
if (text.isNullOrBlank()) {