OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.print C# (CSharp) Method

print() public method

public print ( string str ) : void
str string
return void
        public void print(string str)
        {
            // yes, this is a real LSL function. See: http://wiki.secondlife.com/wiki/Print
            IOSSL_Api ossl = (IOSSL_Api)m_ScriptEngine.GetApi(m_item.ItemID, "OSSL");
            if (ossl != null)
            {
                ossl.CheckThreatLevel(ThreatLevel.High, "print");
                m_log.Info("LSL print():" + str);
            }
        }	
        	
LSL_Api