    def default_line(self, line):
        if line.endswith(b"\n"):
            line = line[:-1]
        if line.endswith(b"\r"):
            line = line[:-1]
        try:
            line = line.decode("ASCII")
        except UnicodeDecodeError:
            pass
        print(line)