Skip to content

Commit

Permalink
SAK-30237: non harmful warnings about property not defined after rece…
Browse files Browse the repository at this point in the history
…nt patches
  • Loading branch information
bjones86 committed Jan 22, 2016
1 parent 9d334de commit 00337a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5759,10 +5759,10 @@ public boolean assignmentUsesAnonymousGrading(Assignment a) {
return properties.getBooleanProperty(NEW_ASSIGNMENT_CHECK_ANONYMOUS_GRADING);
}
catch (EntityPropertyNotDefinedException e) {
M_log.warn("Entity Property " + NEW_ASSIGNMENT_CHECK_ANONYMOUS_GRADING + " not defined " + e.getMessage());
M_log.debug("Entity Property " + NEW_ASSIGNMENT_CHECK_ANONYMOUS_GRADING + " not defined " + e.getMessage());
}
catch (EntityPropertyTypeException e) {
M_log.warn("Entity Property " + NEW_ASSIGNMENT_CHECK_ANONYMOUS_GRADING + " type not defined " + e.getMessage());
M_log.debug("Entity Property " + NEW_ASSIGNMENT_CHECK_ANONYMOUS_GRADING + " type not defined " + e.getMessage());
}
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14309,11 +14309,11 @@ else if (MODE_INSTRUCTOR_GRADE_ASSIGNMENT.equals(mode) || MODE_INSTRUCTOR_GRADE_
}
catch( EntityPropertyNotDefinedException ex )
{
M_log.warn( ":sizeResources: property not defined for assignment " + aRef + " " + ex.getMessage() );
M_log.debug( ":sizeResources: property not defined for assignment " + aRef + " " + ex.getMessage() );
}
catch( EntityPropertyTypeException ex )
{
M_log.warn( ":sizeResources: property type exception for assignment " + aRef + " " + ex.getMessage() );
M_log.debug( ":sizeResources: property type exception for assignment " + aRef + " " + ex.getMessage() );
}

if ( assignment != null && assignment.isGroup()) {
Expand Down

0 comments on commit 00337a8

Please sign in to comment.