File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -95,12 +95,12 @@ var RollupContext = (function () {
9595 RollupContext . prototype . info = function ( message ) {
9696 if ( this . verbosity < VerbosityLevel . Info )
9797 return ;
98- this . context . warn ( "" + this . prefix + message ) ;
98+ console . log ( "" + this . prefix + message ) ;
9999 } ;
100100 RollupContext . prototype . debug = function ( message ) {
101101 if ( this . verbosity < VerbosityLevel . Debug )
102102 return ;
103- this . context . warn ( "" + this . prefix + message ) ;
103+ console . log ( "" + this . prefix + message ) ;
104104 } ;
105105 return RollupContext ;
106106} ( ) ) ;
Original file line number Diff line number Diff line change @@ -100,12 +100,12 @@ var RollupContext = (function () {
100100 RollupContext . prototype . info = function ( message ) {
101101 if ( this . verbosity < VerbosityLevel . Info )
102102 return ;
103- this . context . warn ( "" + this . prefix + message ) ;
103+ console . log ( "" + this . prefix + message ) ;
104104 } ;
105105 RollupContext . prototype . debug = function ( message ) {
106106 if ( this . verbosity < VerbosityLevel . Debug )
107107 return ;
108- this . context . warn ( "" + this . prefix + message ) ;
108+ console . log ( "" + this . prefix + message ) ;
109109 } ;
110110 return RollupContext ;
111111} ( ) ) ;
Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ export class RollupContext implements IContext
2828 {
2929 if ( this . verbosity < VerbosityLevel . Info )
3030 return ;
31- this . context . warn ( `${ this . prefix } ${ message } ` ) ;
31+ console . log ( `${ this . prefix } ${ message } ` ) ;
3232 }
3333
3434 public debug ( message : string ) : void
3535 {
3636 if ( this . verbosity < VerbosityLevel . Debug )
3737 return ;
38- this . context . warn ( `${ this . prefix } ${ message } ` ) ;
38+ console . log ( `${ this . prefix } ${ message } ` ) ;
3939 }
4040}
You can’t perform that action at this time.
0 commit comments