Ignore:
Timestamp:
06/05/24 18:56:35 (4 weeks ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Message:

Long debug logs are attached as a file to the bug tickets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/gui.py

    r1163 r1164  
    6161                 ("Zsebényi-Loksa", "Gergely", "test") ]
    6262
     63    _maxInlineDebugLogLines = 200
     64
    6365    def __init__(self, programDirectory, config):
    6466        """Construct the GUI."""
     
    17691771            description += str(formatFlightLogLine(timestampString, text))
    17701772
     1773        buffer = self._debugLogView.get_buffer()
     1774        debugLogTooLong = buffer.get_line_count()>GUI._maxInlineDebugLogLines
     1775
    17711776        description += "\n\n" + ("=" * 40)
    1772         description += "\n\nThe contents of the debug log:\n\n"
    1773 
    1774         buffer = self._debugLogView.get_buffer()
    1775         description += buffer.get_text(buffer.get_start_iter(),
    1776                                        buffer.get_end_iter(), True)
     1777        description += "\n\nThe contents of the debug log%s:\n\n" % \
     1778            (" (truncated)" if debugLogTooLong else "")
     1779
     1780        debugLog = buffer.get_text(buffer.get_start_iter(),
     1781                                   buffer.get_end_iter(), True)
     1782        if debugLogTooLong:
     1783            description += buffer.get_text(buffer.get_start_iter(),
     1784                                           buffer.get_iter_at_line(GUI._maxInlineDebugLogLines),
     1785                                           True)
     1786        else:
     1787            description += debugLog
     1788            debugLog = None
    17771789
    17781790        self.beginBusy(xstr("sendBugReport_busy"))
    17791791        self._sendBugReportCallback = callback
    17801792        self.webHandler.sendBugReport(self._bugReportSentCallback,
    1781                                       summary, description, email)
     1793                                      summary, description, email,
     1794                                      debugLog = debugLog)
    17821795
    17831796    def _cefInitialized(self):
Note: See TracChangeset for help on using the changeset viewer.