Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 meshtastic (2.5.4-1) unstable; urgency=medium
 .
   * New upstream version.
   * d/control: update Vcs fields.
   * Apply patch to fix build-depends, and fix other dependency.
     Thanks Chris Talbot. (Closes: #1083123)
Author: Alex Myczko <tar@debian.org>
Bug-Debian: https://bugs.debian.org/1083123

---
The information above should follow the Patch Tagging Guidelines, please
checkout https://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: (upstream|backport|vendor|other), (<patch-url>|commit:<commit-id>)
Bug: <upstream-bugtracker-url>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: (no|not-needed|<patch-forwarded-url>)
Applied-Upstream: <version>, (<commit-url>|commit:<commid-id>)
Reviewed-By: <name and email of someone who approved/reviewed the patch>
Last-Update: 2024-11-07

--- meshtastic-2.5.4.orig/meshtastic/mesh_interface.py
+++ meshtastic-2.5.4/meshtastic/mesh_interface.py
@@ -15,7 +15,6 @@ from decimal import Decimal
 from typing import Any, Callable, Dict, List, Optional, Union
 
 import google.protobuf.json_format
-import print_color  # type: ignore[import-untyped]
 from pubsub import pub  # type: ignore[import-untyped]
 from tabulate import tabulate
 
@@ -154,17 +153,7 @@ class MeshInterface:  # pylint: disable=
     def _printLogLine(line, interface):
         """Print a line of log output."""
         if interface.debugOut == sys.stdout:
-            # this isn't quite correct (could cause false positives), but currently our formatting differs between different log representations
-            if "DEBUG" in line:
-                print_color.print(line, color="cyan", end=None)
-            elif "INFO" in line:
-                print_color.print(line, color="white", end=None)
-            elif "WARN" in line:
-                print_color.print(line, color="yellow", end=None)
-            elif "ERR" in line:
-                print_color.print(line, color="red", end=None)
-            else:
-                print_color.print(line, end=None)
+            interface.debugOut.write(line + "\n")
         else:
             interface.debugOut.write(line + "\n")
 
