| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 2 | 8 | 2 | 0.975 | ExpressionStatement |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 2 | 485 | Closure/closure/goog/debug/logger.js |
| 2 | 2 | 497 | Closure/closure/goog/debug/logger.js |
| 3 | 2 | 509 | Closure/closure/goog/debug/logger.js |
| 4 | 2 | 521 | Closure/closure/goog/debug/logger.js |
| 5 | 2 | 533 | Closure/closure/goog/debug/logger.js |
| 6 | 2 | 545 | Closure/closure/goog/debug/logger.js |
| 7 | 2 | 557 | Closure/closure/goog/debug/logger.js |
| 8 | 2 | 569 | Closure/closure/goog/debug/logger.js |
| ||||
/**
* Log a message at the Logger.Level.SHOUT level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
goog.debug.Logger.prototype.shout= function (msg, opt_exception){
this.log(goog.debug.Logger.Level.SHOUT, msg, opt_exception);
} ;
|
| ||||
/**
* Log a message at the Logger.Level.SEVERE level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
goog.debug.Logger.prototype.severe= function (msg, opt_exception){
this.log(goog.debug.Logger.Level.SEVERE, msg, opt_exception);
} ;
|
| ||||
/**
* Log a message at the Logger.Level.WARNING level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
goog.debug.Logger.prototype.warning= function (msg, opt_exception){
this.log(goog.debug.Logger.Level.WARNING, msg, opt_exception);
} ;
|
| ||||
/**
* Log a message at the Logger.Level.INFO level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
goog.debug.Logger.prototype.info= function (msg, opt_exception){
this.log(goog.debug.Logger.Level.INFO, msg, opt_exception);
} ;
|
| ||||
/**
* Log a message at the Logger.Level.CONFIG level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
goog.debug.Logger.prototype.config= function (msg, opt_exception){
this.log(goog.debug.Logger.Level.CONFIG, msg, opt_exception);
} ;
|
| ||||
/**
* Log a message at the Logger.Level.FINE level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
goog.debug.Logger.prototype.fine= function (msg, opt_exception){
this.log(goog.debug.Logger.Level.FINE, msg, opt_exception);
} ;
|
| ||||
/**
* Log a message at the Logger.Level.FINER level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
goog.debug.Logger.prototype.finer= function (msg, opt_exception){
this.log(goog.debug.Logger.Level.FINER, msg, opt_exception);
} ;
|
| ||||
/**
* Log a message at the Logger.Level.FINEST level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
goog.debug.Logger.prototype.finest= function (msg, opt_exception){
this.log(goog.debug.Logger.Level.FINEST, msg, opt_exception);
} ;
|
| |||
/**
* Log a message at the Logger.Level.FINEST level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
/**
* Log a message at the Logger.Level.FINER level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
/**
* Log a message at the Logger.Level.FINE level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
/**
* Log a message at the Logger.Level.CONFIG level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
/**
* Log a message at the Logger.Level.INFO level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
/**
* Log a message at the Logger.Level.WARNING level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
/**
* Log a message at the Logger.Level.SEVERE level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
/**
* Log a message at the Logger.Level.SHOUT level.
* If the logger is currently enabled for the given message level then the
* given message is forwarded to all the registered output Handler objects.
* @param {string} msg The string message.
* @param {Error=} opt_exception An exception associated with the message.
*/
goog.debug.Logger.prototype. [[#variable61694f40]]= function (msg,opt_exception)
{ this.log(goog.debug.Logger.Level. [[#variable5d890cc0]],msg,opt_exception);
} ;
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#61694f40]] | finest |
| 1 | 2 | [[#61694f40]] | finer |
| 1 | 3 | [[#61694f40]] | fine |
| 1 | 4 | [[#61694f40]] | config |
| 1 | 5 | [[#61694f40]] | info |
| 1 | 6 | [[#61694f40]] | warning |
| 1 | 7 | [[#61694f40]] | severe |
| 1 | 8 | [[#61694f40]] | shout |
| 2 | 1 | [[#5d890cc0]] | FINEST |
| 2 | 2 | [[#5d890cc0]] | FINER |
| 2 | 3 | [[#5d890cc0]] | FINE |
| 2 | 4 | [[#5d890cc0]] | CONFIG |
| 2 | 5 | [[#5d890cc0]] | INFO |
| 2 | 6 | [[#5d890cc0]] | WARNING |
| 2 | 7 | [[#5d890cc0]] | SEVERE |
| 2 | 8 | [[#5d890cc0]] | SHOUT |