Subversion Repositories SmartDukaan

Rev

Rev 35370 | Rev 35394 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35370 Rev 35372
Line 264... Line 264...
264
                LOGGER.error("Retailer not found in user_account");
264
                LOGGER.error("Retailer not found in user_account");
265
            }
265
            }
266
        } else {
266
        } else {
267
            try {
267
            try {
268
                TrialForm trialForm = trialFormRepository.selectByEmailOrMobile(emailIdOrMobileNumber);
268
                TrialForm trialForm = trialFormRepository.selectByEmailOrMobile(emailIdOrMobileNumber);
269
                LOGGER.info("trialForm - ", trialForm);
269
                LOGGER.info("trialForm - {}", trialForm);
270
                map.put("trialForm", gson.toJson(trialForm));
270
                map.put("trialForm", gson.toJson(trialForm));
271
            } catch (Exception e) {
271
            } catch (Exception e) {
272
                LOGGER.error("Retailer not found in user_account");
272
                LOGGER.error("Retailer not found in user_account");
273
            }
273
            }
274
        }
274
        }