Creates a logger server that logs messages on behalf of the remote end of a message channel. The remote end of the channel should use a {goog.messaging.LoggerClient} with the same service name.
extends goog.DisposableInstance Method Summary | |
disposeInternal() Deletes or nulls out any references to COM objects, DOM nodes, or other disposable objects. Classes that extend {@code goog.Disposable} should override this method. Not reentrant. To avoid calling it twice, it must only be called from the subclass' {@code disposeInternal} method. Everywhere else the public {@code dispose} method must be used. For example: mypackage.MyClass = function() { goog.base(this); // Constructor logic specific to MyClass. ... }; goog.inherits(mypackage.MyClass, goog.Disposable); mypackage.MyClass.prototype.disposeInternal = function() { goog.base(this, 'disposeInternal'); // Dispose logic specific to MyClass. ... }; | |
log_({exception: (Object|null), level: number, message: string, name: string, ...} args) Handles logging messages from the client. |