@Echo off
REM -------------------------------------------------------------------------
REM #Script Description......: prints about JobMode Debug:ON Test:ON'
REM #New.....................: 14.12.2025/J.Fes'
REM #LUp.....................: 18.01.2026/J.Fes'
REM -------------------------------------------------------------------------

 if /i "%JobMgr_Debug%" neq "ON" if /i "%JobMgr_Test%" neq "ON" goto :Next
  Call :PrintSepLine
  Call :BannerDebugOn
  Call :BannerTestOn
  Call Echo2 "#D:JobMode Info" "#D:%JobMgr_Debug% and #T:%JobMgr_Test%"
  Call :PrintSepLine
  goto :myEnd
 :next

 if /i "%JobMgr_Debug%" neq "ON" goto :Next
  Call :PrintSepLine
  Call :BannerDebugOn
  Call :PrintSepLine
  goto :myEnd
:Next


 if /i "%JobMgr_Test%" neq "ON" goto :Next
  set JobTitleB=%JobTitleB%[#T:%JobMgr_Test%]
  Call :PrintSepLine
  Call :BannerTestOn
  Call :PrintSepLine
  goto :myEnd
:Next

goto:MyEnd

:BannerDebugOn
  Call Banner #Debug:%JobMgr_Debug%
 goto :eof

:BannerTestOn
  Call Banner #Test.:%JobMgr_Test%
 goto :eof

:PrintSepLine
 Call Echo2 "#--#" "#--#"
 goto :eof

:myEnd
