File tree Expand file tree Collapse file tree
src/main/java/software/amazon/lambda/powertools/parameters Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8282 <artifactId >aspectjrt</artifactId >
8383 <scope >compile</scope >
8484 </dependency >
85- <dependency >
86- <groupId >software.amazon.payloadoffloading</groupId >
87- <artifactId >payloadoffloading-common</artifactId >
88- </dependency >
8985 <!-- Test dependencies -->
9086 <dependency >
9187 <groupId >org.junit.jupiter</groupId >
Original file line number Diff line number Diff line change 1313 */
1414package software .amazon .lambda .powertools .parameters ;
1515
16- import org .apache .commons .logging .Log ;
17- import org .apache .commons .logging .LogFactory ;
1816import software .amazon .awssdk .services .secretsmanager .SecretsManagerClient ;
1917import software .amazon .awssdk .services .ssm .SsmClient ;
2018import software .amazon .lambda .powertools .parameters .cache .CacheManager ;
3028 */
3129public final class ParamManager {
3230
33- private static final Log LOG = LogFactory .getLog (ParamManager .class );
34-
3531 private static final CacheManager cacheManager = new CacheManager ();
3632 private static final TransformationManager transformationManager = new TransformationManager ();
3733
@@ -109,7 +105,6 @@ private static <T extends BaseProvider> T createProvider(Class<T> providerClass)
109105 provider .setTransformationManager (transformationManager );
110106 return provider ;
111107 } catch (NoSuchMethodException | IllegalAccessException | InstantiationException | InvocationTargetException e ) {
112- LOG .error ("Failed creating provider instance" , e );
113108 throw new RuntimeException ("Unexpected error occurred. Please raise issue at " +
114109 "https://github.com/awslabs/aws-lambda-powertools-java/issues" , e );
115110 }
You can’t perform that action at this time.
0 commit comments