Remove unnecessary / stray debugging exception dumps.
authorScott Gasch <[email protected]>
Thu, 18 Aug 2022 23:54:36 +0000 (16:54 -0700)
committerScott Gasch <[email protected]>
Thu, 18 Aug 2022 23:54:36 +0000 (16:54 -0700)
text_utils.py

index 890bc630f870c23ad3fabb2b31248ac359c98b26..39b8fe3e3db64266aeaeaad4d92503be393017e9 100644 (file)
@@ -50,8 +50,7 @@ def get_console_rows_columns() -> RowsColumns:
                 "stty size",
                 timeout_seconds=1.0,
             ).split()
-        except Exception as e:
-            logger.exception(e)
+        except Exception:
             rows = None
             cols = None
 
@@ -62,8 +61,7 @@ def get_console_rows_columns() -> RowsColumns:
                 "tput rows",
                 timeout_seconds=1.0,
             )
-        except Exception as e:
-            logger.exception(e)
+        except Exception:
             rows = None
 
     if cols is None:
@@ -73,8 +71,7 @@ def get_console_rows_columns() -> RowsColumns:
                 "tput cols",
                 timeout_seconds=1.0,
             )
-        except Exception as e:
-            logger.exception(e)
+        except Exception:
             cols = None
 
     if not rows or not cols: