c0034_vv

Log reference:

    loading [Config]:  ./tests/functests/upconfig.yml
    Main config:
                 Version -> 1.0.0
                  RefDir -> ./tests/functests
                 WorkDir -> cwd
              AbsWorkDir -> /up_project/up
                TaskFile -> c0034
                 Verbose -> vv
              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/c0034
    module: [self], instance id: [dev], exec profile: []
    Task1: [task ==> task:  ]
    -Step1:
    =Task2: [task ==> show_school_details:  ]
    --Step1:
    cmd( 1):
    echo """1.school -> {{.school}}"""
    
    -
    1.school -> address:
      suburb:
        name: sydney
        postcode: 2000
        CBD: no
      school: Sydney Grammar
    principal: Mr Peter
    something: ref task does not have this field
    
    
    -
     .. ok
    cmd( 2):
    echo """2.school object CBD -> {{.school_object.address.suburb.CBD}}"""
    
    -
    2.school object CBD -> false
    
    -
     .. ok
    cmd( 3):
    echo """3.school object-> {{.school_object.address.school}}"""
    
    -
    3.school object-> Sydney Grammar
    
    -
     .. ok
    cmd( 4):
    echo """4.school object-> {{.school_object.principal}}"""
    
    -
    4.school object-> Mr Peter
    
    -
     .. ok
    cmd( 5):
    echo """5.a {{.a}}"""
    
    -
    5.a local-a
    
    -
     .. ok
    cmd( 6):
    echo """6.b {{.b}}"""
    
    -
    6.b local-b
    
    -
     .. ok
    cmd( 7):
    echo """7.school object-> {{.school_object|printObj}}"""
    
    {
      "principal": "Mr Peter",
      "address": {
        "suburb": {
          "postcode": 2000,
          "CBD": false,
          "name": "sydney"
        },
        "school": "Sydney Grammar",
        "state": "NSW",
        "city": "sydney"
      },
      "something": "ref task does not have this field"
    }
    
    {
      "address": {
        "city": "sydney",
        "suburb": {
          "CBD": false,
          "name": "sydney",
          "postcode": 2000
        },
        "school": "Sydney Grammar",
        "state": "NSW"
      },
      "something": "ref task does not have this field",
      "principal": "Mr Peter"
    }
    
    -
    7.school object-> {
      principal: Mr Peter,
      address: {
        state: NSW,
        city: sydney,
        suburb: {
          postcode: 2000,
          CBD: false,
          name: sydney
        },
        school: Sydney Grammar
      },
      something: ref task does not have this field
    }
    
    
    
    -
     .. ok
    . ok
    
Logs with different verbose level
References