This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 05-18 15:10:38.013 3719-6711/com.eventxtra.expo.contact.debug A/libc: Fatal signal 11 (SIGSEGV) at 0x000000a0 (code=1), thread 6711 (uil-pool-2-thre) | |
| -------------------------------------------- | |
| 05-18 15:06:29.863 3719-3719/com.eventxtra.expo.contact.debug I/dalvikvm: Could not find method android.view.Window$Callback.onProvideKeyboardShortcuts, referenced from method android.support.v7.view.WindowCallbackWrapper.onProvideKeyboardShortcuts | |
| 05-18 15:06:29.863 3719-3719/com.eventxtra.expo.contact.debug W/dalvikvm: VFY: unable to resolve interface method 24635: Landroid/view/Window$Callback;.onProvideKeyboardShortcuts (Ljava/util/List;Landroid/view/Menu;I)V | |
| 05-18 15:06:29.863 3719-3719/com.eventxtra.expo.contact.debug D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002 | |
| 05-18 15:06:29.863 3719-3719/com.eventxtra.expo.contact.debug W/dalvikvm: VFY: unable to find class referenced in signature (Landroid/view/SearchEvent;) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [fg169,169,169;[bg;2017-04-27 13:32:20.260 [main] > ^^^[; | |
| 0000 | |
| 2017-04-27 13:32:46.041 ContactStaging[412:102432] HC_StartBCR failed.==200 | |
| 0000 | |
| 2017-04-27 13:32:57.108 ContactStaging[412:102432] HC_StartBCR failed.==200 | |
| [fg169,169,169;[bg;2017-04-27 13:32:20.260 [main] > ^^^[; | |
| 0000 | |
| 2017-04-27 13:32:46.041 ContactStaging[412:102432] HC_StartBCR failed.==200 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [fg169,169,169;[bg;2017-06-09 14:26:18.615 [main] > ^^^[; | |
| retryQueue.operations count = 0 | |
| HCDAT : null | |
| Data path : /var/containers/Bundle/Application/2C694975-0399-4127-84FE-175C2098003C/ContactStaging.app/ | |
| Load Dic 2672 from /var/containers/Bundle/Application/2C694975-0399-4127-84FE-175C2098003C/ContactStaging.app/name_ENb2u.txt | |
| Load Dic 361 from /var/containers/Bundle/Application/2C694975-0399-4127-84FE-175C2098003C/ContactStaging.app/name_PYb2u.txt | |
| Load Dic 630 from /var/containers/Bundle/Application/2C694975-0399-4127-84FE-175C2098003C/ContactStaging.app/name_CHb2u.txt | |
| Load Map 308 from /var/containers/Bundle/Application/2C694975-0399-4127-84FE-175C2098003C/ContactStaging.app/area_chb2u.txt | |
| Load Map 182 from /var/containers/Bundle/Application/2C694975-0399-4127-84FE-175C2098003C/ContactStaging.app/AreaCode_b2u.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ExpoUser.find_each do |expo_user| | |
| if expo_user.has_role? :expo_owner | |
| ems_user = User.find_by(email: expo_user.email) | |
| puts "dashboard user : " | |
| puts expo_user.email | |
| if ems_user.blank? | |
| puts "didnt had EMS user : " | |
| puts expo_user.email | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ExpoUserToUser | |
| def self.start_sync | |
| ExpoUser.find_each do |expo_user| | |
| if expo_user.has_role? :expo_owner | |
| ems_user = User.find_by(email: expo_user.email) | |
| if ems_user.blank? | |
| # ems_user = User.new(email: expo_user.email, name: expo_user.name, password: expo_user.password, company: expo_user.company, phone: "", country_code:"") | |
| ems_user = User.find_or_initialize_by(email: expo_user.email) | |
| # name: expo_user.name, password: expo_user.password, company: expo_user.company, phone: "", country_code:"" | |
| ems_user.name = expo_user.name |
OlderNewer
