Skip to content

Commit

Permalink
Add Sub & Endpoint Info to the Test Start Info
Browse files Browse the repository at this point in the history
  • Loading branch information
huangpf committed Jul 11, 2015
1 parent 2344add commit 4e3841d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,9 @@ public static void SetTestSettings()

protected void StartTest(string testname, DateTime testStartTime)
{
Console.WriteLine("{0} test starts at {1}", testname, testStartTime);
string subId = defaultAzureSubscription.SubscriptionId;
string endPoint = defaultAzureSubscription.ServiceEndpoint;
Console.WriteLine("{0} test starts at {1} for subscription {2} and endpoint {3}", testname, testStartTime, subId, endPoint);
}

private static void Retry(string cmdlet, string message, int maxTry = 1, int intervalSecond = 10)
Expand Down

0 comments on commit 4e3841d

Please sign in to comment.