I got ironpython working fine on mono, but it doesn't import the logging
module.
Executing this code:
ScriptEngine engine = Python.CreateEngine();
dynamic logging = engine.ImportModule("logging");
yields the following error:
IronPython.Runtime.Exceptions.ImportException: No module named logging
The IronPython assemblies I have included are up-to-date: IronPython.Modules.dll, Microsoft.Dynamic.dll, Microsoft.Scripting.dll, Microsoft.Scripting.Metadata.dll.
How can I make use of the logging module within Ironpython?