remove console logs

closes #1145
This commit is contained in:
Ibby
2017-03-06 04:31:31 -05:00
parent 46f80555f7
commit b393c7448b
-2
View File
@@ -485,10 +485,8 @@ export function Plugin(config: PluginConfig) {
*/
export function Cordova(opts: CordovaOptions = {}) {
return (target: Object, methodName: string, descriptor: TypedPropertyDescriptor<any>) => {
console.log('@Cordova()', target, methodName, descriptor);
return {
value: function(...args: any[]) {
console.log('@Cordova() wrap()', this, methodName, opts);
return wrap(this, methodName, opts).apply(this, args);
}
};