mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-10 14:21:51 +00:00
1923ccc8f9
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2750 d0543943-73ff-0310-b7d9-9358b9ac24b2
16 lines
374 B
C#
16 lines
374 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using FreeSwitch.Types;
|
|
using FreeSwitch.Marshaling.Types;
|
|
|
|
namespace FreeSwitch
|
|
{
|
|
public class Log
|
|
{
|
|
public static void Printf(LogLevel level, string message)
|
|
{
|
|
Switch.switch_log_printf(null, "File", "Func.NET", 123, level, message);
|
|
}
|
|
}
|
|
} |