Function diffSystemLogContents

  • Differs two system log contents and returns the new content after the last matching line.

    This function compares two log contents, oldContent and newContent, and returns the portion of the newContent that appears after the last matching line in the oldContent. It splits the content based on the provided lineSeparator and uses the lastLineIndex to find the line to compare.

    Returns

    The portion of newContent after the last matching line in oldContent. If no match is found, returns the entire newContent.

    Parameters

    • oldContent: string

      The original system log content to compare against.

    • newContent: string

      The new system log content to find the difference from the old content.

    • Optional lineSeparator: string = '\n'

      The character(s) used to separate lines in the content (default is newline).

    • Optional lastLineIndex: number = -2

      The index of the last line to compare, negative index can be used (default is -2, the second-to-last line).

    Returns string

Generated using TypeDoc