@@ -620,28 +620,28 @@ public static void init(final int db_schema_version) throws Exception
620620 // HINT: try to read "PRAGMA user_version" and see if there is some legacy value there
621621 current_db_schema_version = get_current_db_legacy_version ();
622622 }
623- Log .i (TAG , "trifa :current_db_version=" + current_db_schema_version );
623+ Log .i (TAG , "INIT :current_db_version=" + current_db_schema_version );
624624 if ((current_db_schema_version < 0 ) || (THIS_DB_SCHEMA_VERSION < 0 ))
625625 {
626- Log .i (TAG , "trifa :current_db_schema_version and/or THIS_DB_SCHEMA_VERSION are negative numbers, this is not allowed!" );
626+ Log .i (TAG , "INIT :current_db_schema_version and/or THIS_DB_SCHEMA_VERSION are negative numbers, this is not allowed!" );
627627 }
628628 if ((current_db_schema_version == 0 ) && (THIS_DB_SCHEMA_VERSION == 0 ))
629629 {
630- Log .i (TAG , "trifa :current_db_schema_version and THIS_DB_SCHEMA_VERSION are both 0, this is not allowed!" );
630+ Log .i (TAG , "INIT :current_db_schema_version and THIS_DB_SCHEMA_VERSION are both 0, this is not allowed!" );
631631 }
632632 if (current_db_schema_version < THIS_DB_SCHEMA_VERSION )
633633 {
634634 for (int cur =current_db_schema_version ;cur <THIS_DB_SCHEMA_VERSION ;cur ++)
635635 {
636- Log .i (TAG , "trifa :calling schema upgrade callback function for " + cur + " -> " + (cur + 1 ));
636+ Log .i (TAG , "INIT :calling schema upgrade callback function for " + cur + " -> " + (cur + 1 ));
637637 if (schema_upgrade_callback_function != null )
638638 {
639639 schema_upgrade_callback_function .upgrade (cur , (cur + 1 ));
640640 }
641641 }
642642 }
643643 current_db_schema_version = update_db (current_db_schema_version );
644- Log .i (TAG , "trifa :new_db_version=" + current_db_schema_version );
644+ Log .i (TAG , "INIT :new_db_version=" + current_db_schema_version );
645645 // --------------- CREATE THE DATABASE ---------------
646646 // --------------- CREATE THE DATABASE ---------------
647647 // --------------- CREATE THE DATABASE ---------------
0 commit comments