From ae196cfb5f03cca25d700d12b5b58819cec0ac43 Mon Sep 17 00:00:00 2001 From: Rich Date: Wed, 12 Jan 2011 21:48:08 +0000 Subject: [PATCH] Removed LogInfo for Annotations --- PROMS/DataLoader/Steps.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/DataLoader/Steps.cs b/PROMS/DataLoader/Steps.cs index 826c4b0b..4d9d43c8 100644 --- a/PROMS/DataLoader/Steps.cs +++ b/PROMS/DataLoader/Steps.cs @@ -241,7 +241,7 @@ namespace DataLoader if ((nxttok = tkstring.IndexOf("\x1")) > -1) // Comment { // add the comment to annotation table. Set type to comment. - log.InfoFormat("Comment text: {0}", tkstring.Substring(nxttok + 1)); + //log.InfoFormat("Comment text: {0}", tkstring.Substring(nxttok + 1)); Annotation annot = Annotation.MakeAnnotation(item, CommentType, null, tkstring.Substring(nxttok + 1), null, dts, userid); } }