You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
796 B

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security;
using System.Text;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Configuration;
using Convert = System.Convert;
namespace AlabusTransfer.Helper
{
public class Log
{
public void insert_entry(int loglevel, int userid, string description)
{
clsDB db = new clsDB();
db.insert_log(1, userid, description);
}
private int get_level()
{
return Convert.ToInt32(AlabusTransfer.Properties.Settings.Default.LogLevel);
}
}
}