@@ -101,7 +101,7 @@ def PlatformAdd(platform=None, frameworkPath=None, path=None, symlink=False, ass
101
101
102
102
return output
103
103
104
- def Prepare (path = None , platform = None , assertSuccess = True ):
104
+ def Prepare (path = None , platform = None , logTrace = False , assertSuccess = True ):
105
105
106
106
command = tnsPath + " prepare"
107
107
@@ -111,6 +111,9 @@ def Prepare(path=None, platform=None, assertSuccess=True):
111
111
if path is not None :
112
112
command += " --path {0}" .format (path )
113
113
114
+ if logTrace :
115
+ command += " --log trace"
116
+
114
117
output = runAUT (command )
115
118
116
119
if assertSuccess :
@@ -141,7 +144,7 @@ def LibraryAdd(platform=None, libPath=None, path=None, assertSuccess=True):
141
144
142
145
return output
143
146
144
- def Build (platform = None , mode = None , path = None , assertSuccess = True ):
147
+ def Build (platform = None , mode = None , path = None , logTrace = False , assertSuccess = True ):
145
148
146
149
command = tnsPath + " build"
147
150
@@ -154,6 +157,9 @@ def Build(platform=None, mode=None, path=None, assertSuccess=True):
154
157
if path is not None :
155
158
command += " --path {0}" .format (path )
156
159
160
+ if logTrace :
161
+ command += " --log trace"
162
+
157
163
output = runAUT (command )
158
164
159
165
if assertSuccess :
0 commit comments