/// <summary>
 ///   Called when the inspector gets active.
 /// </summary>
 public void OnEnable()
 {
     this.instance = this.target as EventManagerLogBehaviour;
 }
 /// <summary>
 ///   Called when the inspector gets disabled.
 /// </summary>
 public void OnDisable()
 {
     this.instance = null;
 }