How to replace Lua default error print?

Viewed 1758

I'm implementing Lua as a script language into a Windows application. Due to the application's structure, printout isn't using streamed io, such as stdout and stderror.

I have managed to override the Lua print to fit into my structure...

lua_register(L,"print", cs_print);

...but how do I override all error an debug printouts without using streams? I need to handle this in a function (similar to print).

2 Answers
Related