deactivated step

A step with a func could be temporarily deactivated by denoated using a extra x, so use dox instead of do

Demo

source

Main task yaml file
    tasks:
    - name: task
      task:
      - func: cmd
        do:
        - name: print
          cmd: "step1"
      - func: cmd
        dox:
        - name: print
          cmd: "step2"
      - func: cmd
        do:
        - name: print
          cmd: "step3"
    
Main log file
    loading [Config]:  ./tests/functests/upconfig.yml
    Main config:
                 Version -> 1.0.0
                  RefDir -> ./tests/functests
                 WorkDir -> cwd
              AbsWorkDir -> /up_project/up
                TaskFile -> c0137
                 Verbose -> vvv
              ModuleName -> self
               ShellType -> /bin/sh
           MaxCallLayers -> 8
                 Timeout -> 3600000
     MaxModuelCallLayers -> 256
               EntryTask -> task
      ModRepoUsernameRef -> 
      ModRepoPasswordRef -> 
    work dir: /up_project/up
    -exec task: task
    loading [Task]:  ./tests/functests/c0137
    module: [self], instance id: [dev], exec profile: []
    profile -  envVars:
    
    (*core.Cache)({
    })
    
    Task1: [task ==> task:  ]
    -Step1:
    self: final context exec vars:
    
    (*core.Cache)({
      "up_runtime_task_layer_number": 0
    })
    
    ~SubStep1: [print:  ]
    step1
    -Step2:
     WARN: [*] - [Step is deactivated!]
    -Step3:
    self: final context exec vars:
    
    (*core.Cache)({
      "up_runtime_task_layer_number": 0
    })
    
    ~SubStep1: [print:  ]
    step3
    
Logs with different verbose level
Raw logs with different verbose level