Removed comment from load-weave.js that I put in while debugging and committed by accident.

This commit is contained in:
jonathandicarlo@jonathan-dicarlos-macbook-pro.local 2008-04-04 10:49:41 -07:00
Родитель 8507db265b
Коммит 304fa26587
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -824,6 +824,15 @@ CookieStore.prototype = {
// the best way to deal with this.
this._log.info("CookieStore got editCommand: " + command );
this._log.debug( "Info on command object passed in: " );
for ( var x in command )
{
this._log.debug( "Command." + x + " = " + command[x] );
}
for ( var y in command.data )
{
this._log.debug( "Command.data." + y + " = " + command.data[y] );
}
},
wrap: function CookieStore_wrap() {