in code/Tools/Ops/ManageServerState/Program.cs [306:328]
private static void DisplayWarning()
{
// display warning
Console.WriteLine();
if (doClean && doQueues)
{
Console.WriteLine("Warning!! this program will erase all OBA state from the Azure Service Bus queues.");
}
else if (doClean && doTables)
{
Console.WriteLine("Warning!! this program will erase all OBA state from the Azure Table storage.");
}
else if (doClean && doLogs)
{
Console.WriteLine("Warning!! this program will erase all OBA logs from the Azure WAD* tables.");
}
else if (doClean && doAll)
{
Console.WriteLine("Warning!! this program will erase all OBA state from Azure. Everything! Really!!");
}
Console.WriteLine();
}