File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,7 @@ class WebDataRepository extends NetworkDataRepository {
204
204
required String layoutID,
205
205
required PublishSource source,
206
206
}) async {
207
+ print ('Downloading conditions for $layoutID ' );
207
208
try {
208
209
final Response result = await post (
209
210
Uri .parse ('$cloudFunctionsBaseURL /getPublishedLayoutConditionsRequest' ),
@@ -229,8 +230,11 @@ class WebDataRepository extends NetworkDataRepository {
229
230
final SDKLayoutConditions conditions =
230
231
SDKLayoutConditions .fromJson ({...modelDoc, 'id' : layoutID});
231
232
233
+ print ('Layout Conditions [${conditions .id }]: ${conditions .conditions .length }' );
234
+
232
235
return conditions;
233
236
} catch (e, stacktrace) {
237
+ print ('Error downloading conditions for $layoutID ' );
234
238
print (e);
235
239
print (stacktrace);
236
240
return null ;
You can’t perform that action at this time.
0 commit comments