Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FIT-Connect Tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FIT-Connect
FIT-Connect Tools
Commits
6ac5bebb
Commit
6ac5bebb
authored
11 months ago
by
Martin Vogel
Browse files
Options
Downloads
Patches
Plain Diff
refactor: change log msg (
planning#1796
)
parent
e041fcae
No related branches found
No related tags found
1 merge request
!77
#1796 CLI Erweiterungen
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/cli/src/main/java/dev/fitko/fitconnect/cli/CommandExecutor.java
+3
-3
3 additions, 3 deletions
...c/main/java/dev/fitko/fitconnect/cli/CommandExecutor.java
with
3 additions
and
3 deletions
java/cli/src/main/java/dev/fitko/fitconnect/cli/CommandExecutor.java
+
3
−
3
View file @
6ac5bebb
...
...
@@ -93,9 +93,9 @@ class CommandExecutor {
void
listSubmissions
(
final
ListAllSubmissionsCommand
listAllSubmissionsCommand
)
{
final
var
destinationId
=
listAllSubmissionsCommand
.
destinationId
;
LOGGER
.
info
(
"Listing available submissions for destination {}"
,
destinationId
);
for
(
final
SubmissionForPickup
submission
:
subscriberClient
.
getAvailableSubmissionsForDestination
(
destinationId
)
)
{
LOGGER
.
info
(
"
caseId: {} - submissionId:
{}
"
,
submission
.
getCaseId
(),
submission
.
getSubmissionId
());
}
final
Set
<
SubmissionForPickup
>
submission
s
=
subscriberClient
.
getAvailableSubmissionsForDestination
(
destinationId
)
;
LOGGER
.
info
(
"
Found
{} submission
(s)"
,
submissions
.
size
());
submissions
.
forEach
(
submission
->
LOGGER
.
info
(
"caseId: {} - submissionId: {}"
,
submission
.
getCaseId
(),
submission
.
getSubmissionId
()));
}
SentSubmission
sendSubmission
(
final
SendSubmissionCommand
sendSubmissionCommand
)
throws
IOException
{
...
...
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