remove some logging

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
Marcel Hibbe 2022-12-12 17:01:26 +01:00
parent 7745e75f5f
commit 227b7bc080
No known key found for this signature in database
GPG key ID: C793F8B59F43CE7B
3 changed files with 0 additions and 10 deletions

View file

@ -363,13 +363,10 @@ class MainActivity : BaseActivity(), ActionBarProvider {
}
override fun onBackPressed() {
Log.d(TAG, "onBackPressed")
if (router!!.getControllerWithTag(LockedController.TAG) != null) {
return
}
if (!router!!.handleBack()) {
Log.d(TAG, "back press was not handled by top controller. call onBackPressed...")
super.onBackPressed()
}
}

View file

@ -1803,8 +1803,6 @@ class ChatController(args: Bundle) :
if (inConversation) {
Log.d(TAG, "execute joinRoomWithPassword in onAttach")
joinRoomWithPassword()
// replace with getRoomInfo() ? otherwise getRoomInfo is not called periodically after coming
// back to app when it was in background
}
}
@ -1905,8 +1903,6 @@ class ChatController(args: Bundle) :
}
private fun joinRoomWithPassword() {
Log.d(TAG, "joinRoomWithPassword. currentConversation==null ?:" + (currentConversation == null).toString())
if (!validSessionId()) {
Log.d(TAG, "sessionID was not valid -> joinRoom")
var apiVersion = 1

View file

@ -245,9 +245,6 @@ abstract class BaseController(@LayoutRes var layoutRes: Int, args: Bundle? = nul
calculateValidParentController()
}
actionBar!!.title = title
Log.d(TAG, "setTitle: $title")
} else {
Log.d(TAG, "title was not set!!!!")
}
}