Stefan probably needs to check if he has the standard logging prelude in 
his main() method, like

       if (qx.core.Variant.isSet("qx.debug", "on"))
       {
         // support native logging capabilities, e.g. Firebug for Firefox
         qx.log.appender.Native;
         // support additional cross-browser console. Press F7 to toggle 
visibility
         qx.log.appender.Console;
       }

Without that, many checks that are done in the source version go unnoticed.

T.

On 03/03/2011 01:38 AM, Jeremiah Dodds wrote:
>
>
> On Wed, Mar 2, 2011 at 7:16 PM, Guilherme Aiolfi <[email protected]
> <mailto:[email protected]>> wrote:
>
>     You probably calling a private or protected function in your code.
>     Private methods are those starting with two underscore:
>     __imPrivate(), and protected are those with just one, like:
>     _imProtected().
>     If you are extending a class, you can call in your code public and
>     protected methods. Otherwise, just public methods (without any "_"
>     before the method name). Private methods are those used exclusively
>     by the class that it's declared.
>
>
> Wouldn't this happen in the source version as well? Unless you mean you
> can't call private methods
> *at all*  in the build version, which would seem ... ridiculous.
>
>
>
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search&  Analyze Logs and other IT data in
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business
> insights. http://p.sf.net/sfu/splunk-dev2dev
>
>
>
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to