Skip to content

Commit

Permalink
Update log message: Ignoring unexpected field
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Rademacher <[email protected]>
  • Loading branch information
koriym and DerManoMann authored Sep 7, 2023
1 parent 4650139 commit b4224e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Annotations/AbstractAnnotation.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public function __set($property, $value)
foreach (static::$_blacklist as $_property) {
unset($fields[$_property]);
}
Logger::notice('Unexpected field "' . $property . '" for ' . $this->identity() . ', expecting "' . implode('", "', array_keys($fields)) . '" in ' . $this->_context);
Logger::notice('Ignoring unexpected field "' . $property . '" for ' . $this->identity() . ', expecting "' . implode('", "', array_keys($fields)) . '" in ' . $this->_context);
}

/**
Expand Down

0 comments on commit b4224e0

Please sign in to comment.