Esempio n. 1
0
        public static void BasicExample()
        {
            // Uusi information tyyppinen tietue
            JKLogger.Information("Terve 1!");

            JKLogger.Dispose();
        }
Esempio n. 2
0
        public static void ReadFromDefault()
        {
            // Uusi information tyyppinen tietue
            JKLogger.Information("Terve 3!");

            // haetaan default mapperin instanssi
            IReadable readable = MapperManager.GetDefaultMapper(typeof(Managed)) as IReadable;

            if (readable != null)
            {
                // annetaan instanssi readerille
                using (JKReader reader = new JKReader(readable))
                {
                    // loopataan lukijassa olevat tietueet
                    foreach (IEntry entry in reader)
                    {
                        Console.WriteLine(entry.Message);
                    }
                }
            }

            JKLogger.Dispose();
        }