Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
6a7ef513
Commit
6a7ef513
authored
2 weeks ago
by
Julian Tusch
Browse files
Options
Downloads
Patches
Plain Diff
add suggested not null check
parent
c692fab7
No related branches found
Branches containing commit
No related tags found
1 merge request
!524
Fix missing rootprofile defaults logging
Pipeline
#22699
passed
2 weeks ago
Stage: build-and-test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/libraries/skills/core/Skill.cpp
+1
-0
1 addition, 0 deletions
source/RobotAPI/libraries/skills/core/Skill.cpp
with
1 addition
and
0 deletions
source/RobotAPI/libraries/skills/core/Skill.cpp
+
1
−
0
View file @
6a7ef513
...
@@ -13,6 +13,7 @@ namespace armarx
...
@@ -13,6 +13,7 @@ namespace armarx
// replace constructor if you want to have a specific logging tag
// replace constructor if you want to have a specific logging tag
Logging
::
setTag
(
"armarx::skills::"
+
description
.
skillId
.
toString
());
Logging
::
setTag
(
"armarx::skills::"
+
description
.
skillId
.
toString
());
ARMARX_CHECK_NOT_NULL
(
desc
.
rootProfileDefaults
);
if
(
!
desc
.
rootProfileDefaults
->
fullfillsType
(
desc
.
parametersType
))
if
(
!
desc
.
rootProfileDefaults
->
fullfillsType
(
desc
.
parametersType
))
{
{
ARMARX_WARNING
<<
"Missing root profile defaults for skill "
<<
desc
.
skillId
;
ARMARX_WARNING
<<
"Missing root profile defaults for skill "
<<
desc
.
skillId
;
...
...
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