Changed DebugLevel, default 500 page

This commit is contained in:
2015-02-12 16:00:45 +08:00
parent 24ddf7a4b8
commit e570b4367b
3 changed files with 14 additions and 7 deletions
+4 -4
View File
@@ -57,22 +57,22 @@ function Dragonfly( logHandler )
this.Info( "Dragonfly ready.", Dragonfly.Visibility.VISIBLE );
}
Dragonfly.prototype.Info = function( mesg, visibility )
Dragonfly.prototype.Debug = function( mesg, visibility )
{
this.Log( mesg, Dragonfly.Spheres.THERMO, visibility );
};
Dragonfly.prototype.Warning = function( mesg, visibility )
Dragonfly.prototype.Info = function( mesg, visibility )
{
this.Log( mesg, Dragonfly.Spheres.STRATO, visibility );
};
Dragonfly.prototype.Error = function( mesg, visibility )
Dragonfly.prototype.Warning = function( mesg, visibility )
{
this.Log( mesg, Dragonfly.Spheres.HYDRO, visibility );
};
Dragonfly.prototype.Debug = function( mesg, visibility )
Dragonfly.prototype.Error = function( mesg, visibility )
{
this.Log( mesg, Dragonfly.Spheres.LITHO, visibility );
};