[MNG-7051] When an optional profile could not be found, an info message should be thrown instead of a warning.

This commit is contained in:
Martin Kanters 2021-03-08 13:42:57 +01:00 committed by Martin Kanters
parent 0e75baae25
commit 9643ac630c
1 changed files with 1 additions and 1 deletions

View File

@ -611,7 +611,7 @@ private void validateOptionalProfiles( MavenSession session, ProfileActivation p
"The requested optional profiles [%s] could not be activated or deactivated because they "
+ "do not exist.", String.join( ", ", notFoundOptionalProfiles )
);
logger.warn( message );
logger.info( message );
}
}