using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.ServiceModel; using System.Text; using System.Windows.Forms; using LiveLogger4Log4Net; using log4net; using log4net.Repository.Hierarchy; using NHibernate; namespace TestApplication { public partial class Form1 : Form { private ILog l; public Form1() { InitializeComponent(); l = LogManager.GetLogger("MainLogger"); } private void button1_Click(object sender, EventArgs e) { l.Warn("This is a test warn"); } private void button2_Click(object sender, EventArgs e) { using (ISession session = NHSessionManager.GetSession()) { session.CreateQuery("from Customer").List(); } } } }