public static List<ErrorHelpLog> findAll(Context context) {
   FinalDb db = FinalDb.create(context, ApplicationConfig.DATABASE_NAME, DEBUG);
   List<ErrorHelpLog> result = db.findAll(ErrorHelpLog.class);
   if (result != null) {
     for (ErrorHelpLog lg : result) {
       lg.setCtx(context);
     }
   }
   return result;
 }