(msg: string, params: Dictionary)
| 865 | ); |
| 866 | |
| 867 | const log = (msg: string, params: Dictionary) => { |
| 868 | if (logging) { |
| 869 | const copy = Utils.copy(params); |
| 870 | Utils.dropUndefinedProperties(copy); |
| 871 | this.log(msg, copy); |
| 872 | } |
| 873 | }; |
| 874 | |
| 875 | if ( |
| 876 | fromColumnType !== toColumnType && |
no test coverage detected