mrs-toolbox-cli 0.0.115 → 0.0.116

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,7 +29,7 @@
29
29
  //endregion
30
30
  function KotlinLogging() {
31
31
  }
32
- protoOf(KotlinLogging).p51 = function (func) {
32
+ protoOf(KotlinLogging).l51 = function (func) {
33
33
  var tmp$ret$0;
34
34
  $l$block: {
35
35
  // Inline function 'io.github.oshai.kotlinlogging.internal.KLoggerNameResolver.name' call
@@ -48,9 +48,9 @@
48
48
  }
49
49
  tmp$ret$0 = '';
50
50
  }
51
- return this.q51(tmp$ret$0);
51
+ return this.m51(tmp$ret$0);
52
52
  };
53
- protoOf(KotlinLogging).q51 = function (name) {
53
+ protoOf(KotlinLogging).m51 = function (name) {
54
54
  // Inline function 'io.github.oshai.kotlinlogging.internal.KLoggerFactory.logger' call
55
55
  return new KLoggerJS(name);
56
56
  };
@@ -78,11 +78,11 @@
78
78
  }
79
79
  function Level(name, ordinal, levelInt, levelStr) {
80
80
  Enum.call(this, name, ordinal);
81
- this.t51_1 = levelInt;
82
- this.u51_1 = levelStr;
81
+ this.p51_1 = levelInt;
82
+ this.q51_1 = levelStr;
83
83
  }
84
84
  protoOf(Level).toString = function () {
85
- return this.u51_1;
85
+ return this.q51_1;
86
86
  };
87
87
  function Level_TRACE_getInstance() {
88
88
  Level_initEntries();
@@ -110,7 +110,7 @@
110
110
  }
111
111
  function DefaultErrorMessageProducer() {
112
112
  }
113
- protoOf(DefaultErrorMessageProducer).v51 = function (e) {
113
+ protoOf(DefaultErrorMessageProducer).r51 = function (e) {
114
114
  return 'Log message invocation failed: ' + e;
115
115
  };
116
116
  var DefaultErrorMessageProducer_instance;
@@ -119,13 +119,13 @@
119
119
  }
120
120
  function ConsoleOutputAppender() {
121
121
  }
122
- protoOf(ConsoleOutputAppender).w51 = function (message) {
122
+ protoOf(ConsoleOutputAppender).s51 = function (message) {
123
123
  return console.info(message);
124
124
  };
125
- protoOf(ConsoleOutputAppender).x51 = function (message) {
125
+ protoOf(ConsoleOutputAppender).t51 = function (message) {
126
126
  return console.warn(message);
127
127
  };
128
- protoOf(ConsoleOutputAppender).y51 = function (message) {
128
+ protoOf(ConsoleOutputAppender).u51 = function (message) {
129
129
  return console.error(message);
130
130
  };
131
131
  var ConsoleOutputAppender_instance;
@@ -134,7 +134,7 @@
134
134
  }
135
135
  function DefaultMessageFormatter() {
136
136
  }
137
- protoOf(DefaultMessageFormatter).z51 = function (level, loggerName, msg) {
137
+ protoOf(DefaultMessageFormatter).v51 = function (level, loggerName, msg) {
138
138
  // Inline function 'io.github.oshai.kotlinlogging.internal.toStringSafe' call
139
139
  var tmp;
140
140
  try {
@@ -143,7 +143,7 @@
143
143
  var tmp_0;
144
144
  if ($p instanceof Exception) {
145
145
  var e = $p;
146
- tmp_0 = DefaultErrorMessageProducer_instance.v51(e);
146
+ tmp_0 = DefaultErrorMessageProducer_instance.r51(e);
147
147
  } else {
148
148
  throw $p;
149
149
  }
@@ -158,9 +158,9 @@
158
158
  }
159
159
  function KotlinLoggingConfiguration() {
160
160
  KotlinLoggingConfiguration_instance = this;
161
- this.a52_1 = Level_INFO_getInstance();
162
- this.b52_1 = ConsoleOutputAppender_instance;
163
- this.c52_1 = DefaultMessageFormatter_instance;
161
+ this.w51_1 = Level_INFO_getInstance();
162
+ this.x51_1 = ConsoleOutputAppender_instance;
163
+ this.y51_1 = DefaultMessageFormatter_instance;
164
164
  }
165
165
  var KotlinLoggingConfiguration_instance;
166
166
  function KotlinLoggingConfiguration_getInstance() {
@@ -169,7 +169,7 @@
169
169
  return KotlinLoggingConfiguration_instance;
170
170
  }
171
171
  function isLoggingEnabled(_this__u8e3s4) {
172
- return _this__u8e3s4.w9_1 >= KotlinLoggingConfiguration_getInstance().a52_1.w9_1;
172
+ return _this__u8e3s4.w9_1 >= KotlinLoggingConfiguration_getInstance().w51_1.w9_1;
173
173
  }
174
174
  function KLoggerFactory() {
175
175
  }
@@ -179,12 +179,12 @@
179
179
  }
180
180
  function logIfEnabled(_this__u8e3s4, $this, loggerName, msg, logFunction) {
181
181
  if (isLoggingEnabled(_this__u8e3s4)) {
182
- logFunction(KotlinLoggingConfiguration_getInstance().c52_1.z51(_this__u8e3s4, loggerName, msg));
182
+ logFunction(KotlinLoggingConfiguration_getInstance().y51_1.v51(_this__u8e3s4, loggerName, msg));
183
183
  }
184
184
  }
185
185
  function Appender$info$ref($boundThis) {
186
186
  var l = function (p0) {
187
- $boundThis.w51(p0);
187
+ $boundThis.s51(p0);
188
188
  return Unit_instance;
189
189
  };
190
190
  l.callableName = 'info';
@@ -192,7 +192,7 @@
192
192
  }
193
193
  function Appender$warn$ref($boundThis) {
194
194
  var l = function (p0) {
195
- $boundThis.x51(p0);
195
+ $boundThis.t51(p0);
196
196
  return Unit_instance;
197
197
  };
198
198
  l.callableName = 'warn';
@@ -200,32 +200,32 @@
200
200
  }
201
201
  function Appender$error$ref($boundThis) {
202
202
  var l = function (p0) {
203
- $boundThis.y51(p0);
203
+ $boundThis.u51(p0);
204
204
  return Unit_instance;
205
205
  };
206
206
  l.callableName = 'error';
207
207
  return l;
208
208
  }
209
209
  function KLoggerJS(name) {
210
- this.d52_1 = name;
211
- this.e52_1 = isLoggingEnabled(Level_TRACE_getInstance());
212
- this.f52_1 = isLoggingEnabled(Level_DEBUG_getInstance());
213
- this.g52_1 = isLoggingEnabled(Level_INFO_getInstance());
214
- this.h52_1 = isLoggingEnabled(Level_WARN_getInstance());
215
- this.i52_1 = isLoggingEnabled(Level_ERROR_getInstance());
216
- this.j52_1 = isLoggingEnabled(Level_OFF_getInstance());
217
- }
218
- protoOf(KLoggerJS).k52 = function (msg) {
210
+ this.z51_1 = name;
211
+ this.a52_1 = isLoggingEnabled(Level_TRACE_getInstance());
212
+ this.b52_1 = isLoggingEnabled(Level_DEBUG_getInstance());
213
+ this.c52_1 = isLoggingEnabled(Level_INFO_getInstance());
214
+ this.d52_1 = isLoggingEnabled(Level_WARN_getInstance());
215
+ this.e52_1 = isLoggingEnabled(Level_ERROR_getInstance());
216
+ this.f52_1 = isLoggingEnabled(Level_OFF_getInstance());
217
+ }
218
+ protoOf(KLoggerJS).g52 = function (msg) {
219
219
  var tmp = Level_INFO_getInstance();
220
- return logIfEnabled(tmp, this, this.d52_1, msg, Appender$info$ref(KotlinLoggingConfiguration_getInstance().b52_1));
220
+ return logIfEnabled(tmp, this, this.z51_1, msg, Appender$info$ref(KotlinLoggingConfiguration_getInstance().x51_1));
221
221
  };
222
- protoOf(KLoggerJS).l52 = function (msg) {
222
+ protoOf(KLoggerJS).h52 = function (msg) {
223
223
  var tmp = Level_WARN_getInstance();
224
- return logIfEnabled(tmp, this, this.d52_1, msg, Appender$warn$ref(KotlinLoggingConfiguration_getInstance().b52_1));
224
+ return logIfEnabled(tmp, this, this.z51_1, msg, Appender$warn$ref(KotlinLoggingConfiguration_getInstance().x51_1));
225
225
  };
226
- protoOf(KLoggerJS).m52 = function (msg) {
226
+ protoOf(KLoggerJS).i52 = function (msg) {
227
227
  var tmp = Level_ERROR_getInstance();
228
- return logIfEnabled(tmp, this, this.d52_1, msg, Appender$error$ref(KotlinLoggingConfiguration_getInstance().b52_1));
228
+ return logIfEnabled(tmp, this, this.z51_1, msg, Appender$error$ref(KotlinLoggingConfiguration_getInstance().x51_1));
229
229
  };
230
230
  function KLoggerNameResolver() {
231
231
  }
@@ -192,11 +192,6 @@
192
192
  setMetadataFor($hasNextCOROUTINE$5, '$hasNextCOROUTINE$5', classMeta, CoroutineImpl);
193
193
  setMetadataFor(SendBroadcast, 'SendBroadcast', classMeta, VOID, [Waiter]);
194
194
  setMetadataFor(BufferedChannelIterator, 'BufferedChannelIterator', classMeta, VOID, [Waiter], VOID, VOID, VOID, [0, 3]);
195
- function close$default(cause, $super) {
196
- cause = cause === VOID ? null : cause;
197
- return $super === VOID ? this.s10(cause) : $super.s10.call(this, cause);
198
- }
199
- setMetadataFor(SendChannel, 'SendChannel', interfaceMeta, VOID, VOID, VOID, VOID, VOID, [1]);
200
195
  function cancel$default_0(cause, $super) {
201
196
  cause = cause === VOID ? null : cause;
202
197
  var tmp;
@@ -209,7 +204,12 @@
209
204
  return tmp;
210
205
  }
211
206
  setMetadataFor(ReceiveChannel, 'ReceiveChannel', interfaceMeta, VOID, VOID, VOID, VOID, VOID, [0]);
212
- setMetadataFor(BufferedChannel, 'BufferedChannel', classMeta, VOID, [SendChannel, ReceiveChannel], VOID, VOID, VOID, [1, 4, 0, 3]);
207
+ function close$default(cause, $super) {
208
+ cause = cause === VOID ? null : cause;
209
+ return $super === VOID ? this.s10(cause) : $super.s10.call(this, cause);
210
+ }
211
+ setMetadataFor(SendChannel, 'SendChannel', interfaceMeta, VOID, VOID, VOID, VOID, VOID, [1]);
212
+ setMetadataFor(BufferedChannel, 'BufferedChannel', classMeta, VOID, [ReceiveChannel, SendChannel], VOID, VOID, VOID, [1, 4, 0, 3]);
213
213
  setMetadataFor(WaiterEB, 'WaiterEB', classMeta);
214
214
  setMetadataFor(ReceiveCatching, 'ReceiveCatching', classMeta, VOID, [Waiter]);
215
215
  setMetadataFor(Factory, 'Factory', objectMeta);