From 07a307146f171cf83a071ce38c7b5cfbf212060a Mon Sep 17 00:00:00 2001 From: "Joel W. Reed" Date: Thu, 27 Mar 2008 09:42:07 -0400 Subject: [PATCH] add.stats.command.to.tfsbot --- tools/tfsbot/StatsCommand.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/tfsbot/StatsCommand.cs b/tools/tfsbot/StatsCommand.cs index a3b2f06..f9e71fa 100644 --- a/tools/tfsbot/StatsCommand.cs +++ b/tools/tfsbot/StatsCommand.cs @@ -74,13 +74,13 @@ partial class NotifierDaemon AdminStats stats = new AdminStats(AppSettings.TfsUrl, creds); AdminRepositoryInfo info = stats.QueryRepositoryInformation(); - Console.WriteLine("Files: " + info.FileCount); - Console.WriteLine("Folders: " + info.FolderCount); - Console.WriteLine("Groups: " + info.GroupCount); - Console.WriteLine("Pending Changes: " + info.PendingChangeCount); - Console.WriteLine("Shelvesets: " + info.ShelvesetCount); - Console.WriteLine("Users: " + info.UserCount); - Console.WriteLine("Workspaces: " + info.WorkspaceCount); + CommandMessage("Files: " + info.FileCount); + CommandMessage("Folders: " + info.FolderCount); + CommandMessage("Groups: " + info.GroupCount); + CommandMessage("Pending Changes: " + info.PendingChangeCount); + CommandMessage("Shelvesets: " + info.ShelvesetCount); + CommandMessage("Users: " + info.UserCount); + CommandMessage("Workspaces: " + info.WorkspaceCount); } } \ No newline at end of file -- 2.11.4.GIT