Class PrintDebug

java.lang.Object
com.ubs.backend.util.PrintDebug

public class PrintDebug extends Object
  • Constructor Details

    • PrintDebug

      public PrintDebug()
  • Method Details

    • printDebug

      public static void printDebug(String title, Object information, int lineBreaksBefore)
      Method to print debug info to the console
      Parameters:
      title - the Title of the Debug Info
      information - the Content of the information
      lineBreaksBefore - the amount of linebreaks before the output
      Since:
      17.07.2021
    • printDebug

      public static void printDebug(String title, Object information, int lineBreaksBefore, int lineBreaksAfter)
      Method to print debug info to the console
      Parameters:
      title - the Title of the Debug Info
      information - the Content of the information
      lineBreaksBefore - the amount of linebreaks before the output
      lineBreaksAfter - the amount of linebreaks after the output
    • printDebug

      public static void printDebug(String title, Object information)
      Method to print debug info to the console without linebreaks
      Parameters:
      title - the Title of the Debug Info
      information - the Content of the information
      Since:
      17.07.2021