Added better debuging messages

This commit is contained in:
James Clancey 2019-07-03 12:31:01 -08:00
Родитель 1cfaf0301f
Коммит e98f7c6d1a
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -279,7 +279,7 @@ namespace HotUI
}
}
}
Console.WriteLine(type);
// Console.WriteLine(type);
hasChecked = true;
}
internal void DisposingObject(object obj)
@ -311,7 +311,7 @@ namespace HotUI
}
}
}
Console.WriteLine(type);
//Console.WriteLine(type);
hasChecked = true;
}

Просмотреть файл

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
namespace HotUI {
@ -100,6 +101,7 @@ namespace HotUI {
return this;
if (builtView != null)
return builtView;
Debug.WriteLine ($"Building View: {this.GetType().Name}");
using (new StateBuilder (State)) {
State.SetParent (this);
State.StartProperty ();