Printing works fine in other methods but it won't work in the initialize() thread. Does not matter if I put it before or after the base.Initialize.
protected override void Initialize() {
// TODO: Add your initialization logic here
Debug.WriteLine("hellO");
base.Initialize();
}