Skip to content

Commit

Permalink
Update packages/logging_cloudwatch/aws_logging_cloudwatch/lib/src/rem…
Browse files Browse the repository at this point in the history
…ote_constraint_provider.dart

Co-authored-by: Dillon Nys <24740863+dnys1@users.noreply.github.com>
  • Loading branch information
khatruong2009 and dnys1 committed Sep 19, 2023
1 parent cad71d6 commit 5f185c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ base class BaseRemoteLoggingConstraintProvider
final response = await operation.response;
final body = await response.decodeBody();
if (response.statusCode != 200) {
logger.error('Failed to fetch constraints', body);
logger.error('Failed to fetch constraints', (response.statusCode, body));
return;
}
final fetchedConstraint = LoggingConstraint.fromJson(
Expand Down

0 comments on commit 5f185c4

Please sign in to comment.