Skip to content
Snippets Groups Projects
Commit 0f062d17 authored by Andreia Gaita's avatar Andreia Gaita
Browse files

Don't need this debug log anymore

parent 15431527
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,6 @@ namespace GitHub.Unity ...@@ -53,7 +53,6 @@ namespace GitHub.Unity
private void OnStatusUpdate(GitStatus update) private void OnStatusUpdate(GitStatus update)
{ {
Logger.Debug("OnStatusUpdate '{0}'", update.Entries);
if (update.Entries == null) if (update.Entries == null)
{ {
Refresh(); Refresh();
......
...@@ -456,7 +456,6 @@ namespace GitHub.Unity ...@@ -456,7 +456,6 @@ namespace GitHub.Unity
} }
set set
{ {
Logger.Debug("Set commit state {0} {1}", Label, value);
if (value == CommitState.Some || value == State) if (value == CommitState.Some || value == State)
{ {
return; return;
......
...@@ -83,12 +83,10 @@ namespace GitHub.Unity ...@@ -83,12 +83,10 @@ namespace GitHub.Unity
public virtual void OnShow() public virtual void OnShow()
{ {
Logger.Debug("OnShow");
} }
public virtual void OnHide() public virtual void OnHide()
{ {
Logger.Debug("OnHide");
} }
public virtual void OnUpdate() public virtual void OnUpdate()
......
...@@ -78,7 +78,6 @@ namespace GitHub.Unity ...@@ -78,7 +78,6 @@ namespace GitHub.Unity
public override void Refresh() public override void Refresh()
{ {
Logger.Debug("Refresh window");
if (ActiveTab != null) if (ActiveTab != null)
ActiveTab.Refresh(); ActiveTab.Refresh();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment