Пример #1
0
        //
        public static void saveLog(string strLog, string subFolder = "", string customFileName = "")
        {
            StringBuilder txt = new StringBuilder();

            txt.AppendLine("***********************************");
            txt.AppendLine("DATETIME: " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString());
            txt.AppendLine("LOG: " + strLog);
            txt.AppendLine("***********************************");

            subFolder = String.IsNullOrEmpty(subFolder) ? "log" : String.Concat("log", "/", subFolder);
            string fileName = String.Concat(customFileName, UtilString.onlyNumber(DateTime.Now.ToShortDateString()), ".txt");
            string pathFile = Path.Combine(UtilConfig.pathAbsTempFiles, subFolder);
            string fullName = Path.Combine(pathFile, fileName);

            if (!File.Exists(fullName))
            {
                UtilIO.createFile(pathFile, fileName, false);
            }

            TextWriter Writer = File.AppendText(fullName);

            Writer.Write(txt.ToString());
            Writer.Close();
        }
Пример #2
0
 //Extensao para facilitar a conversao de int nullable
 public static string removerAcentuacao(this string value)
 {
     return(UtilString.cleanAccents(value));
 }
Пример #3
0
 //Extensao para facilitar filtro alphanumerico
 public static string onlyAlphaNumber(this string value)
 {
     return(UtilString.onlyAlphaNumber(value));
 }
Пример #4
0
        //
        public static void saveError(Exception ex, string sql, string subPath = "")
        {
            StringBuilder txt = new StringBuilder();

            txt.AppendLine("DATETIME: " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString());
            txt.AppendLine("EXTRAS: " + sql).Append("\n");
            txt.AppendLine("EXCEPTON: " + ex.Message).Append("\n");
            txt.AppendLine("TRACE: " + ex.StackTrace).Append("\n");
            var st    = new StackTrace(ex, true);
            var frame = st.GetFrame(0);

            if (frame != null)
            {
                var line = frame.GetFileLineNumber();
                txt.AppendLine("FILE: " + frame.GetFileName()).Append("\n");
                txt.AppendLine("LINE: " + line.ToString()).Append("\n");
            }
            if (ex.InnerException != null)
            {
                if (ex.InnerException.InnerException != null)
                {
                    txt.AppendLine("INNER EXCEPTON: " + ex.InnerException.InnerException.Message).Append("\n");
                    txt.AppendLine("TRACE: " + ex.InnerException.InnerException.StackTrace).Append("\n");
                }
                else
                {
                    txt.AppendLine("INNER EXCEPTON: " + ex.InnerException.Message).Append("\n");
                    txt.AppendLine("TRACE: " + ex.InnerException.StackTrace).Append("\n");
                }
            }

            if (HttpContext.Current != null)
            {
                string paramsPost = "";
                foreach (string name in HttpContext.Current.Request.Form)
                {
                    paramsPost += name + ": " + HttpContext.Current.Request.Unvalidated.Form[name] + " | ";
                }
                txt.AppendLine("POST: ").Append(paramsPost).Append("\n");
                txt.AppendLine("URL: " + HttpContext.Current.Request.Url.AbsoluteUri).Append("\n");
            }

            txt.AppendLine("\n--------------------------------------------------------------------------").Append("\n\n");


            string pathFile = UtilConfig.pathAbsTempFiles;

            if (!subPath.isEmpty())
            {
                pathFile = Path.Combine(pathFile, subPath);
            }

            if (!Directory.Exists(pathFile))
            {
                Directory.CreateDirectory(pathFile);
            }

            pathFile = Path.Combine(pathFile, ("error_" + UtilString.onlyNumber(DateTime.Now.ToShortDateString()) + ".txt"));

            if (!File.Exists(pathFile))
            {
                File.Create(pathFile).Close();
            }

            TextWriter Writer = File.AppendText(pathFile);

            Writer.Write(txt.ToString());
            Writer.Close();
        }