Skip to content

Commit

Permalink
Fixed invalid error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Studer committed Sep 2, 2015
1 parent 0ec5250 commit 8ce5329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VTMAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private void PollGlobal()
}
catch
{
log.Error("Unable to fetch Virtual Server information from the Virtual Traffic Manager '{0}'", this.name);
log.Error("Unable to fetch Global information from the Virtual Traffic Manager '{0}'", this.name);
}
}

Expand Down Expand Up @@ -114,7 +114,7 @@ private void PollPool()
}
catch
{
log.Error("Unable to fetch Virtual Server information from the Virtual Traffic Manager '{0}'", this.name);
log.Error("Unable to fetch Pool information from the Virtual Traffic Manager '{0}'", this.name);
}
}

Expand Down

0 comments on commit 8ce5329

Please sign in to comment.