Changed log message to be more explanatory when no aws integration is found

Signed-off-by: Kiera Jost <kjost@splunk.com>
This commit is contained in:
Kiera Jost
2021-07-27 16:29:45 -07:00
committed by Sean Tan
parent 7d18860698
commit 7a4b204780
@@ -69,8 +69,8 @@ export class AwsS3UrlReader implements UrlReader {
!integration.config.accessKeyId ||
!integration.config.secretAccessKey
) {
logger.info(
'awsS3 credentials not found in config. Using default credentials provider.',
logger.debug(
'integrations.awsS3 not found in app config. AWS S3 integration will use default AWS credentials if set in environment.',
);
s3 = new S3({});
} else {