Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
sunbird-lms-service
Commits
f6438345
Unverified
Commit
f6438345
authored
3 years ago
by
AMIT KUMAR
Committed by
GitHub
3 years ago
Browse files
Options
Download
Patches
Plain Diff
Issue #SB-26822 feat:removed printing email to log (#978)
* Issue #SB-000 feat:removed printing email to log
parent
a400ba9b
release-4.4.1
release-4.4.0
release-4.4.1_RC1
release-4.4.0_RC15
release-4.4.0_RC14
release-4.4.0_RC13
release-4.4.0_RC12
release-4.4.0_RC11
release-4.4.0_RC10
release-4.4.0_RC9
release-4.4.0_RC8
release-4.4.0_RC7
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/actor-core/src/main/java/org/sunbird/actor/core/BaseActor.java
+0
-10
...-core/src/main/java/org/sunbird/actor/core/BaseActor.java
service/src/main/java/org/sunbird/service/notification/NotificationService.java
+3
-3
...org/sunbird/service/notification/NotificationService.java
with
3 additions
and
13 deletions
+3
-13
core/actor-core/src/main/java/org/sunbird/actor/core/BaseActor.java
+
0
−
10
View file @
f6438345
...
...
@@ -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
(
...
...
This diff is collapsed.
Click to expand it.
service/src/main/java/org/sunbird/service/notification/NotificationService.java
+
3
−
3
View file @
f6438345
...
...
@@ -146,14 +146,14 @@ public class NotificationService {
logger
.
info
(
requestContext
,
"NotificationService:updateFirstNameAndOrgNameInEmailContext: Sending email to = "
+
emails
+
" email
s
"
);
+
emails
.
size
()
+
" email
(s)
"
);
}
else
{
logger
.
info
(
requestContext
,
"NotificationService:updateFirstNameAndOrgNameInEmailContext: Sending email to = "
+
emails
.
size
()
+
" email
s
"
);
+
" email
(s)
"
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets