Forum Discussion

martin_facchini's avatar
martin_facchini
Contributor
11 years ago
Solved

is there anyway to NOT log a test?

have a preliminary keyword script to shut down any opened apps before the main test sequence begins.  is there any way to NOT log these results?
  • Ryan_Moran's avatar
    Ryan_Moran
    11 years ago
    function Terminate_AuthManager()
    {
    /*
      disable log
    */
      Log.Enabled = false;
    
    /*
      terminate process  
    */
      Sys.Process("PixelAuthorizeManager").Terminate();
    
    /*
      enable log
    */
      Log.Enabled = true;
    }