Skip to content

Commit 0c86047

Browse files
committed
move from logger to print
1 parent 2a8e79d commit 0c86047

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lightbeam/lightbeam.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def _confirm_delete_op(self, endpoints, verbiage):
147147
return
148148

149149
endpoint_list = "\n\t".join(endpoints)
150-
self.logger.info(f'Preparing to delete the following endpoints:\n\t{endpoint_list}')
150+
print(f'Preparing to delete the following endpoints:\n\t{endpoint_list}')
151151
if input(f'Type "yes" to confirm you want to {verbiage} payloads for the selected endpoints? ')!="yes":
152152
exit('You did not type "yes" - exiting.')
153153

0 commit comments

Comments
 (0)