Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit 8b9d5dc

Browse files
committed
Reduce noisy logs
1 parent 9d39801 commit 8b9d5dc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

eks_node_rollout/eks_node_rollout.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@
1212
import backoff
1313
import time
1414

15-
1615
logging.basicConfig(level=logging.INFO)
1716
logger = logging.getLogger(__name__)
17+
logging.getLogger('boto3').setLevel(logging.CRITICAL)
18+
logging.getLogger('urllib3').setLevel(logging.CRITICAL)
19+
logging.getLogger('sh').setLevel(logging.CRITICAL)
1820

1921

2022
def add_node(asg_client, asg_name, dry_run=True):

0 commit comments

Comments
 (0)