forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebugScriptExecutor.cs
More file actions
19 lines (17 loc) · 851 Bytes
/
DebugScriptExecutor.cs
File metadata and controls
19 lines (17 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using ScriptCs.Contracts;
namespace ScriptCs
{
public class DebugScriptExecutor : ScriptExecutor
{
[Obsolete("Support for Common.Logging types was deprecated in version 0.15.0 and will soon be removed.")]
public DebugScriptExecutor(IFileSystem fileSystem, IFilePreProcessor filePreProcessor, IScriptEngine scriptEngine, Common.Logging.ILog logger, IScriptLibraryComposer composer)
: this(fileSystem, filePreProcessor, scriptEngine, new CommonLoggingLogProvider(logger), composer)
{
}
public DebugScriptExecutor(IFileSystem fileSystem, IFilePreProcessor filePreProcessor, IScriptEngine scriptEngine, ILogProvider logProvider, IScriptLibraryComposer composer)
: base(fileSystem, filePreProcessor, scriptEngine, logProvider, composer)
{
}
}
}