Lern how to...

How to Create an AJAX-enabled Phobos Application

PhobosAJAX関連については下記が参考になります。

Using Logging

Logging events in your application

library.logと呼ばれるPhobosのLogging libraryがあるようです。

logオブジェクトに対してメソッドを定義。

library.common.define(controller, "test", function() {
      var log = library.log.get("app");

      this.Test = function() {};

      with (this.Test) {
         prototype.index = function(mapping) {
              log.trace("invoked action: test.index");

              // ... the rest of the controller code goes here ...
          }
      }
  });
Configuring logging
Logging and the built-in libraries
Tracing

詳細は、こちら から。