We are pulling down a very large solution via the api for an automated build. It's tough to gauge what is happening while it's running though. Is there a verbose mode we can turn on, so we can see what vault is retrieving while it's retrieving. Also, can we then see any vault errors logged somewhere?
Thanks!
Stephen R.
client api verbose mode?
Moderator: SourceGear
You can get more information from the API by hooking in to the StatusChanged handler in the ClientInstance. For example:
where StatusChangedHandler is
will output all of the file names that are downloaded during a get.
Code: Select all
myClientInstance.StatusChanged += new StatusChangedEventHandler(StatusChangedHandler);
Code: Select all
private void StatusChangedHandler(object sender, string message)
{
Console.Out.WriteLine(message);
}