Ejemplo n.º 1
0
        public void WriteRequest(StampyClientRequest request)
        {
            var deploymentTemplatesString = string.Join("|", request.DeploymentTemplates);
            var cloudNamesString          = string.Join("|", request.CloudNames);
            var testCategoriesString      = string.Join("|", request.TestCategories);
            var jobTypes = string.Join("|", request.JobTypes.ToString().Split(new char[] { ',', ' ' }, StringSplitOptions.RemoveEmptyEntries));

            var message = string.Format("{0},{1},{2},{3},{4},{5},{6},{7},{8},{9},{10}", DateTime.UtcNow.ToString(), request.RequestId, request.FlowId, jobTypes,
                                        request.BuildPath, request.DpkPath, cloudNamesString, deploymentTemplatesString, testCategoriesString, request.Client, request.EndUserAlias);

            WriteEvent(message);
        }
Ejemplo n.º 2
0
 public void WriteInfo(StampyClientRequest request, string source, string message)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public void WriteError(StampyClientRequest request, string source, string message, Exception ex = null)
 {
     throw new NotImplementedException();
 }