Unverified Commit f6438345 authored by AMIT KUMAR's avatar AMIT KUMAR Committed by GitHub
Browse files

Issue #SB-26822 feat:removed printing email to log (#978)

* Issue #SB-000 feat:removed printing email to log
Showing with 3 additions and 13 deletions
+3 -13
......@@ -17,16 +17,6 @@ public abstract class BaseActor extends UntypedAbstractActor {
Request request = (Request) message;
String operation = request.getOperation();
try {
logger.info(
request.getRequestContext(),
"Actor Info: Dispatcher : "
+ context().dispatcher().toString()
+ " , Parent Actor : "
+ context().parent().toString()
+ " , Self Actor : "
+ context().self().toString()
+ " , called for operation: "
+ operation);
onReceive(request);
} catch (Exception e) {
logger.error(
......
......@@ -146,14 +146,14 @@ public class NotificationService {
logger.info(
requestContext,
"NotificationService:updateFirstNameAndOrgNameInEmailContext: Sending email to = "
+ emails
+ " emails");
+ emails.size()
+ " email(s)");
} else {
logger.info(
requestContext,
"NotificationService:updateFirstNameAndOrgNameInEmailContext: Sending email to = "
+ emails.size()
+ " emails");
+ " email(s)");
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment