Android Question Unexpected messages in the log window

marcick

Well-Known Member
Licensed User
Longtime User
I'm turning crazy.
They appear in the log window messages related to old code of the app that no longer exist.
For example "ALTER TABLE" or "*** Service (webfwdrdc) Create ***" they do not exist from a long time.
I have used "clean app" and "clean unused files", uninstalled the app and reinstalled but these message still appears.
With CTRL+F there is no trace in the source code of those parts.
How is it possible ?

B4X:
** Service (firebasemessaging) Start **
sending message to waiting queue of uninitialized activity (submitjob)
sending message to waiting queue of uninitialized activity (submitjob)
** Receiver (websyncrdc) OnReceive **
** Receiver (webfwdrdc) OnReceive **  [B]>>> no longer exists[/B]
*** Service (starter) Create ***   
starter service create
** Service (starter) Start **
starter service start
reading settings
(SQLiteException) android.database.sqlite.SQLiteException: duplicate column name: Address (code 1): , while compiling: ALTER TABLE records ADD Address TEXT
#################################################################
Error Code : 1 (SQLITE_ERROR)
Caused By : SQL(query) error or missing database.
[B]>>> no longer exists, i was using ALTER TABLE in the past[/B]    (duplicate column name: Address (code 1): , while compiling: ALTER TABLE records ADD Address TEXT)
#################################################################
(RuntimeException) java.lang.RuntimeException: Object should first be initialized.
Manutenzione completata
*** Service (webfwdrdc) Create ***
WebFwd create  [B]>>> no longer exists, I was using this service in the past[/B]
** Service (webfwdrdc) Start **  >>> no longer exists
Service started in foreground mode.
WebFwd Start  [B]>>> no longer exists[/B]
Stopping WebFwd
** Service (websyncrdc) Create **
WebSYnc Create
 

josejad

Expert
Licensed User
Longtime User
Do you have some app developed with B4A installed on your phone?
If so, close it swapping it

Sometimes I'm debugging with B4A-bridge, and I get messages from my installed "garage door app" trying to connect to the MQTT server
 
Last edited:
Upvote 1
Top