Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
2cb353f3
Commit
2cb353f3
authored
15 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
LMS-1266 minor: improve logging
SVN: 14178
parent
46f6efbb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/server/ProcessDatasetsCommand.java
+18
-2
18 additions, 2 deletions
...sd/openbis/dss/generic/server/ProcessDatasetsCommand.java
with
18 additions
and
2 deletions
datastore_server/source/java/ch/systemsx/cisd/openbis/dss/generic/server/ProcessDatasetsCommand.java
+
18
−
2
View file @
2cb353f3
...
@@ -19,6 +19,10 @@ package ch.systemsx.cisd.openbis.dss.generic.server;
...
@@ -19,6 +19,10 @@ package ch.systemsx.cisd.openbis.dss.generic.server;
import
java.io.File
;
import
java.io.File
;
import
java.util.List
;
import
java.util.List
;
import
org.apache.log4j.Logger
;
import
ch.systemsx.cisd.common.logging.LogCategory
;
import
ch.systemsx.cisd.common.logging.LogFactory
;
import
ch.systemsx.cisd.common.mail.IMailClient
;
import
ch.systemsx.cisd.common.mail.IMailClient
;
import
ch.systemsx.cisd.common.mail.MailClient
;
import
ch.systemsx.cisd.common.mail.MailClient
;
import
ch.systemsx.cisd.openbis.dss.generic.server.plugins.tasks.IProcessingPluginTask
;
import
ch.systemsx.cisd.openbis.dss.generic.server.plugins.tasks.IProcessingPluginTask
;
...
@@ -33,6 +37,9 @@ import ch.systemsx.cisd.openbis.generic.shared.dto.DatasetDescription;
...
@@ -33,6 +37,9 @@ import ch.systemsx.cisd.openbis.generic.shared.dto.DatasetDescription;
*/
*/
public
class
ProcessDatasetsCommand
implements
IDataSetCommand
public
class
ProcessDatasetsCommand
implements
IDataSetCommand
{
{
private
static
final
Logger
operationLog
=
LogFactory
.
getLogger
(
LogCategory
.
OPERATION
,
ProcessDatasetsCommand
.
class
);
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
private
final
IProcessingPluginTask
task
;
private
final
IProcessingPluginTask
task
;
...
@@ -71,8 +78,17 @@ public class ProcessDatasetsCommand implements IDataSetCommand
...
@@ -71,8 +78,17 @@ public class ProcessDatasetsCommand implements IDataSetCommand
{
{
if
(
userEmailOrNull
==
null
)
if
(
userEmailOrNull
==
null
)
{
{
System
.
out
if
(
errorMessageOrNull
!=
null
)
.
println
(
"No email recipient address provided for processing completion notification."
);
{
String
warning
=
String
.
format
(
"Dataset processing '%s' has failed with a message '%s' but"
+
" the person who triggered processing has no email address specified."
+
" No notification has been sent."
,
serviceDescription
.
getKey
(),
errorMessageOrNull
);
operationLog
.
warn
(
warning
);
}
return
;
return
;
}
}
createContentAndSendMessage
(
errorMessageOrNull
);
createContentAndSendMessage
(
errorMessageOrNull
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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