You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the lambada boilerplate project, all is good except this bit of usual warning from lacking of log4j configs,
[INFO] Creating deployment bucket if not exists.
log4j:WARN No appenders could be found for logger (com.amazonaws.AmazonWebServiceClient).
log4j:WARN Please initialize the log4j system properly.
[INFO] Deployment bucket already exist.
Upon checking the maven plugin source, it happened in prepare stage where AWS SDK is used to check if a bucket already exists. Because of the lack of stock log4j.properties packaged with the maven plugin, it spits out the warning above. A simple fix is to supply one that logs to stdout.
The text was updated successfully, but these errors were encountered:
Using the lambada boilerplate project, all is good except this bit of usual warning from lacking of log4j configs,
Upon checking the maven plugin source, it happened in prepare stage where AWS SDK is used to check if a bucket already exists. Because of the lack of stock log4j.properties packaged with the maven plugin, it spits out the warning above. A simple fix is to supply one that logs to stdout.
The text was updated successfully, but these errors were encountered: