Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

log message not complete #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

glaplace
Copy link

@glaplace glaplace commented Jun 15, 2018

A message log contains %s format instead of operation name

WARNING [Petals.Container.Components.petals-se-mapping] : An operation '%s' is defined into the 3PP service provider definition in the JBI descriptor. It won't be used, remove it !!

issue #1

Copy link
Member

@cdeneux cdeneux left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Guillaume,
In your commit you mix changes about the issue #1 and other changes. Please don't mix:

  • one commit for the issue only, in this PR,
  • another commit, in another PR to use correctly log formatter in all classes of the SE Mapping.

@@ -52,8 +52,8 @@ public MappingSuManager(final AbstractServiceEngine component) {

@Override
protected void doDeploy(final ServiceUnitDataHandler suDH) throws PEtALSCDKException {
if (this.logger.isLoggable(Level.FINE)) {
this.logger.fine("Deploying specific part of SU = " + suDH.getName() + ") ...");
if (this.logger.isLoggable(Level.FINE)&& suDH != null) {
Copy link
Member

@cdeneux cdeneux Jun 15, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here suDH must be not null. Unneeded to check it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants