debugLogGetLine

fnstring debugLogGetLine(gst.debug_category.DebugCategory category, gst.types.DebugLevel level, string file, string function_, int line, gobject.object.ObjectWrap object, gst.debug_message.DebugMessage message)

Returns the string representation for the specified debug log message formatted in the same way as gst.global.debugLogDefault (the default handler), without color. The purpose is to make it easy for custom log output handlers to get a log output that is identical to what the default handler would write out.

Parameters

categorycategory to log
levellevel of the message
filethe file that emitted the message, usually the __FILE__ identifier
function_the function that emitted the message
linethe line from that the message was emitted, usually __LINE__
objectthe object this message relates to, or null if none
messagethe actual message

Returns