@operato/scene-label 1.0.0-alpha.3 → 1.0.0-alpha.33
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.
- package/CHANGELOG.md +261 -15
- package/assets/favicon.ico +0 -0
- package/assets/images/spinner.png +0 -0
- package/dist/barcode-scanner.d.ts +3 -1
- package/dist/barcode-scanner.js +62 -10
- package/dist/barcode-scanner.js.map +1 -1
- package/dist/barcode.d.ts +1 -1
- package/dist/barcode.js +1 -1
- package/dist/barcode.js.map +1 -1
- package/dist/label-printer.d.ts +1 -1
- package/dist/label-printer.js +13 -7
- package/dist/label-printer.js.map +1 -1
- package/helps/scene/component/barcode-scanner.ko.md +19 -1
- package/helps/scene/component/barcode-scanner.md +18 -0
- package/helps/scene/component/barcode-scanner.zh.md +20 -2
- package/helps/scene/component/label-printer.ko.md +6 -4
- package/helps/scene/component/label-printer.md +11 -11
- package/helps/scene/component/label-printer.zh.md +15 -13
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +30 -0
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +35 -0
- package/logs/application-2022-06-15-23.log +4 -0
- package/logs/application-2022-06-16-17.log +4 -0
- package/logs/application-2022-07-03-19.log +16 -0
- package/logs/application-2022-07-03-20.log +12 -0
- package/logs/application-2022-07-03-21.log +4 -0
- package/logs/application-2022-07-03-22.log +4 -0
- package/logs/connections-2022-06-09-23.log +70 -0
- package/logs/connections-2022-06-13-11.log +35 -0
- package/logs/connections-2022-06-13-12.log +35 -0
- package/logs/connections-2022-06-15-23.log +35 -0
- package/logs/connections-2022-06-16-17.log +35 -0
- package/logs/connections-2022-06-20-09.log +35 -0
- package/logs/connections-2022-07-03-19.log +140 -0
- package/logs/connections-2022-07-03-20.log +105 -0
- package/logs/connections-2022-07-03-21.log +35 -0
- package/logs/connections-2022-07-03-22.log +35 -0
- package/package.json +7 -7
- package/src/barcode-scanner.ts +71 -10
- package/src/barcode.ts +1 -1
- package/src/label-printer.ts +14 -9
- package/translations/en.json +5 -1
- package/translations/ko.json +5 -1
- package/translations/ms.json +6 -2
- package/translations/zh.json +8 -4
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/direct-print/browser-printer.d.ts +0 -5
- package/dist/direct-print/browser-printer.js +0 -23
- package/dist/direct-print/browser-printer.js.map +0 -1
- package/dist/direct-print/usb-printer.d.ts +0 -14
- package/dist/direct-print/usb-printer.js +0 -69
- package/dist/direct-print/usb-printer.js.map +0 -1
- package/src/direct-print/browser-printer.ts +0 -21
- package/src/direct-print/usb-printer.ts +0 -84
package/dist/label-printer.js
CHANGED
@@ -2,8 +2,7 @@
|
|
2
2
|
* Copyright © HatioLab Inc. All rights reserved.
|
3
3
|
*/
|
4
4
|
import { Component, RectPath, Shape } from '@hatiolab/things-scene';
|
5
|
-
import { BrowserPrinter } from '
|
6
|
-
import { USBPrinter } from './direct-print/usb-printer';
|
5
|
+
import { BrowserPrinter, USBPrinter } from '@operato/barcode';
|
7
6
|
const NATURE = {
|
8
7
|
mutable: false,
|
9
8
|
resizable: true,
|
@@ -36,15 +35,17 @@ const NATURE = {
|
|
36
35
|
type: 'board-selector',
|
37
36
|
label: 'board id',
|
38
37
|
name: 'boardId'
|
38
|
+
},
|
39
|
+
{
|
40
|
+
type: 'number',
|
41
|
+
label: 'copies',
|
42
|
+
name: 'copies'
|
39
43
|
}
|
40
44
|
],
|
41
45
|
'value-property': 'data',
|
42
46
|
help: 'scene/component/label-printer'
|
43
47
|
};
|
44
48
|
export default class LabelPrinter extends RectPath(Shape) {
|
45
|
-
static get nature() {
|
46
|
-
return NATURE;
|
47
|
-
}
|
48
49
|
static get image() {
|
49
50
|
if (!LabelPrinter._image) {
|
50
51
|
LabelPrinter._image = new Image();
|
@@ -52,6 +53,9 @@ export default class LabelPrinter extends RectPath(Shape) {
|
|
52
53
|
}
|
53
54
|
return LabelPrinter._image;
|
54
55
|
}
|
56
|
+
get nature() {
|
57
|
+
return NATURE;
|
58
|
+
}
|
55
59
|
dispose() {
|
56
60
|
super.dispose();
|
57
61
|
}
|
@@ -81,7 +85,7 @@ export default class LabelPrinter extends RectPath(Shape) {
|
|
81
85
|
*/
|
82
86
|
return;
|
83
87
|
}
|
84
|
-
var { directPrinter, boardId, vendorId } = this.state;
|
88
|
+
var { directPrinter, boardId, vendorId, copies = 1 } = this.state;
|
85
89
|
var searchParams = new URLSearchParams();
|
86
90
|
for (var key in data) {
|
87
91
|
searchParams.append(key, data[key]);
|
@@ -103,7 +107,9 @@ export default class LabelPrinter extends RectPath(Shape) {
|
|
103
107
|
: undefined)
|
104
108
|
: new BrowserPrinter();
|
105
109
|
}
|
106
|
-
|
110
|
+
for (var i = 0; i < copies; i++) {
|
111
|
+
await this.printer.print(command);
|
112
|
+
}
|
107
113
|
}
|
108
114
|
catch (err) {
|
109
115
|
throw new Error(err);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"label-printer.js","sourceRoot":"","sources":["../src/label-printer.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,SAAS,EAA+B,QAAQ,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;
|
1
|
+
{"version":3,"file":"label-printer.js","sourceRoot":"","sources":["../src/label-printer.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { Component, ComponentNature, Properties, RectPath, Shape } from '@hatiolab/things-scene'\nimport { BrowserPrinter, USBPrinter } from '@operato/barcode'\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'select',\n label: 'direct-printer',\n name: 'directPrinter',\n property: {\n options: [\n {\n display: 'USB Connected Printer',\n value: 'direct-usb'\n },\n {\n display: 'Zebra Browser Print',\n value: 'zebra-browser-print'\n }\n ]\n }\n },\n {\n type: 'string',\n label: 'vendor id',\n name: 'vendorId',\n placeholder: '0x0A5F'\n },\n {\n type: 'board-selector',\n label: 'board id',\n name: 'boardId'\n },\n {\n type: 'number',\n label: 'copies',\n name: 'copies'\n }\n ],\n 'value-property': 'data',\n help: 'scene/component/label-printer'\n}\n\nexport default class LabelPrinter extends RectPath(Shape) {\n private static _image: HTMLImageElement\n private printer?: USBPrinter | BrowserPrinter\n\n static get image() {\n if (!LabelPrinter._image) {\n LabelPrinter._image = new Image()\n LabelPrinter._image.src = new URL('../icons/label-printer.png', import.meta.url).href\n }\n\n return LabelPrinter._image\n }\n\n get nature() {\n return NATURE\n }\n\n dispose() {\n super.dispose()\n }\n\n render(context: CanvasRenderingContext2D) {\n /*\n * TODO printable 상태를 구분할 수 있는 표시를 추가할 것.\n */\n\n var { left, top, width, height } = this.bounds\n\n context.beginPath()\n this.drawImage(context, LabelPrinter.image, left, top, width, height)\n }\n\n onchange(after: Properties, before: Properties) {\n if ('data' in after) {\n this.print(after.data)\n }\n\n if ('directPrinter' in after) {\n delete this.printer\n }\n }\n\n async print(data: any) {\n if (!this.app.isViewMode || data.constructor !== Object || Object.keys(data).length === 0) {\n /* in cases of\n * - edit mode\n * - data is not a object\n * - data object is empty\n * we doesn't print\n */\n return\n }\n\n var { directPrinter, boardId, vendorId, copies = 1 } = this.state\n\n var searchParams = new URLSearchParams()\n for (var key in data) {\n searchParams.append(key, data[key])\n }\n const response = await fetch(`label-command/${boardId}?${searchParams.toString()}`, {\n method: 'GET'\n })\n\n var command = await response.text()\n\n try {\n if (!this.printer) {\n this.printer =\n directPrinter == 'direct-usb'\n ? new USBPrinter(\n vendorId\n ? [\n {\n vendorId: Number(vendorId)\n }\n ]\n : undefined\n )\n : new BrowserPrinter()\n }\n\n for (var i = 0; i < copies; i++) {\n await this.printer.print(command)\n }\n } catch (err) {\n throw new Error(err as string)\n }\n }\n}\n\nComponent.register('label-printer', LabelPrinter)\n"]}
|
@@ -18,7 +18,7 @@
|
|
18
18
|
이 기능은 [ZXing ("zebra crossing") 라이브러리](https://github.com/zxing/zxing) 를 활용하므로,
|
19
19
|
다음의 바코드 형식을 스캔할 수 있다.
|
20
20
|
|
21
|
-
###
|
21
|
+
### 지원되는 바코드 형식
|
22
22
|
|
23
23
|
| 1D product | 1D industrial | 2D |
|
24
24
|
| :-------------------- | :------------ | :----------- |
|
@@ -29,3 +29,21 @@
|
|
29
29
|
| UPC/EAN Extension 2/5 | ITF | MaxiCode |
|
30
30
|
| | | RSS-14 |
|
31
31
|
| | | RSS-Expanded |
|
32
|
+
|
33
|
+
### 속성
|
34
|
+
|
35
|
+
- 스캔시 엔터키 붙이지않음 (withoutEnter)
|
36
|
+
|
37
|
+
카메라를 이용한 바코드 스캔시 바코드 값 맨뒤에 자동으로 엔터를 붙이지 않는다.
|
38
|
+
기본값은 엔터키를 붙이는 것이다.
|
39
|
+
엔터키가 붙여지면, 스캔 후 바로 change 이벤트가 발생해서 데이타 스프레드가 시작된다.
|
40
|
+
|
41
|
+
- 영어만 입력받음 (englishOnly)
|
42
|
+
|
43
|
+
카메라 입력 또는 키보드 입력시에 멀티바이트(영문자 외의 문자들) 문자를 받지 않고 영문자만 입력을 받는다.
|
44
|
+
IME모드가 멀티바이트 상태이더라도, 각 키에 해당하는 영문으로 변경된다.
|
45
|
+
멀티바이트 입력은 할 수 있지만, 엔터키가 발생할 때 또는 blur이벤트가 발생할 때 멀티바이트 문자들은 제거된 후에 change이벤트가 발생한다.
|
46
|
+
|
47
|
+
- 변경후 전체 선택 (selectAfterChange)
|
48
|
+
|
49
|
+
엔터키나 blur 등에 의해서 change 이벤트가 발생하면, 전체 문자열이 선택된 상태가 된다. 이 경우에는 다음 값이 입력될 때 기존 값이 삭제되고 공백에서 새로운 값을 입력할 수 있으므로 이런 동작이 편리한 경우가 있다.
|
@@ -29,3 +29,21 @@ The following barcode formats can be scanned.
|
|
29
29
|
| UPC/EAN Extension 2/5 | ITF | MaxiCode |
|
30
30
|
| | | RSS-14 |
|
31
31
|
| | | RSS-Expanded |
|
32
|
+
|
33
|
+
### properties
|
34
|
+
|
35
|
+
- without enter key (withoutEnter)
|
36
|
+
|
37
|
+
When scanning barcodes using the camera, "Enter key" is not automatically added to the end of the barcode value.
|
38
|
+
The default is to attach the Enter key.
|
39
|
+
When the Enter key is pressed, a change event occurs immediately after scanning, and data spread begins.
|
40
|
+
|
41
|
+
- english input only (englishOnly)
|
42
|
+
|
43
|
+
When inputting from the camera or keyboard, multi-byte (non-English characters) characters are not received, only English characters are input.
|
44
|
+
Even if the IME mode is in multi-byte state, it is changed to English corresponding to each key.
|
45
|
+
Multi-byte input is possible, but the change event occurs after the multi-byte characters are removed when the enter key occurs or when the blur event occurs.
|
46
|
+
|
47
|
+
- select over change (selectAfterChange)
|
48
|
+
|
49
|
+
When a change event occurs by the enter key or blur, the entire string is selected. In this case, when the next value is input, the existing value is deleted and a new value can be entered in the blank, so this operation is convenient in some cases.
|
@@ -10,8 +10,8 @@
|
|
10
10
|
|
11
11
|
输入完成后,会将输入值应用于数据,以便可以将数据与数据散布绑定。
|
12
12
|
|
13
|
-
如果通过浏览器使用摄像头设备,因此使用摄像头的条形码扫描功能仅在通过HTTPS连接时有效。
|
14
|
-
(所以,如果主机是localhost,则输出功能会异常工作。)
|
13
|
+
如果通过浏览器使用摄像头设备,因此使用摄像头的条形码扫描功能仅在通过 HTTPS 连接时有效。
|
14
|
+
(所以,如果主机是 localhost,则输出功能会异常工作。)
|
15
15
|
|
16
16
|
## 条形码兼容性
|
17
17
|
|
@@ -29,3 +29,21 @@
|
|
29
29
|
| UPC/EAN Extension 2/5 | ITF | MaxiCode |
|
30
30
|
| | | RSS-14 |
|
31
31
|
| | | RSS-Expanded |
|
32
|
+
|
33
|
+
## properties
|
34
|
+
|
35
|
+
- 没有回车键(withoutEnter)
|
36
|
+
|
37
|
+
使用相机扫描条码时,“回车键”不会自动添加到条码值的末尾。
|
38
|
+
默认设置是附加 Enter 键。
|
39
|
+
当按下 Enter 键时,扫描后立即发生更改事件,并开始数据传播。
|
40
|
+
|
41
|
+
- 仅英文输入(englishOnly)
|
42
|
+
|
43
|
+
从相机或键盘输入时,不接收多字节(非英文字符)字符,仅输入英文字符。
|
44
|
+
即使 IME 模式是多字节状态,也会变成对应每个键的英文。
|
45
|
+
多字节输入是可能的,但是当发生回车键或发生模糊事件时,更改事件发生在多字节字符被删除之后。
|
46
|
+
|
47
|
+
- 选择过度变化(selectAfterChange)
|
48
|
+
|
49
|
+
当 enter 键或 blur 发生更改事件时,将选择整个字符串。在这种情况下,当输入下一个值时,现有的值会被删除,在空白处可以输入一个新的值,所以这种操作在某些情况下是很方便的。
|
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# Label Printer
|
2
2
|
|
3
3
|
USB를 통해서 연결된 프린터에, 주어진 라벨보드를 프린트하는 컴포넌트이다.
|
4
4
|
현재, Zebra의 ZPL 중 이미지(GRF Format) 커맨드를 통해서 프린트하는 기능만을 지원한다.
|
@@ -21,15 +21,17 @@ USB를 통해서 연결된 프린터에, 주어진 라벨보드를 프린트하
|
|
21
21
|
- Opera Android +45
|
22
22
|
- Samsung Internet +8.0
|
23
23
|
|
24
|
-
##
|
24
|
+
## Properties
|
25
25
|
|
26
|
-
-
|
26
|
+
- 공급자 ID (vendorId)
|
27
27
|
- USB 포트에 연결된 프린터 벤더의 ID를 설정한다.
|
28
28
|
- 예를 들어, Zebra 의 Vendor ID는 '0x0A5F' 이다.
|
29
29
|
- 필수 입력 항목이 아니며, 입력하지 않은 경우에는 기본으로 Zebra Vendor ID가 사용된다.
|
30
30
|
- 프린트 시점에 브라우저에서 팝업되는 프린트연결 목록에서 대상 프린터를 선택할 수 있다.
|
31
|
-
-
|
31
|
+
- 보드 ID (boardId)
|
32
32
|
- 프린트하고자 하는 보드를 선택한다.
|
33
|
+
- 프린트 매수 (copies)
|
34
|
+
- 몇장을 프린트할 것인지 설정 (디풀트 값은 1매)
|
33
35
|
- value
|
34
36
|
- 이 컴포넌트의 value와 연결된 속성은 'data' 이다.
|
35
37
|
- value가 오브젝트가 아니거나, 비어있는 경우에는 프린트되지 않는다.
|
@@ -23,15 +23,15 @@ It is a function that utilizes [WebUSB API] (https://developer.mozilla.org/en-US
|
|
23
23
|
|
24
24
|
## properties
|
25
25
|
|
26
|
-
- vendor id
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
- board
|
33
|
-
|
34
|
-
|
26
|
+
- vendor id (vendorId)
|
27
|
+
- Set the ID of the printer vendor connected to the USB port.
|
28
|
+
-For example, Zebra's Vendor ID is '0x0A5F'.
|
29
|
+
- This is not a required field, and if it is not entered, the Zebra Vendor ID is used by default.
|
30
|
+
- You can select the target printer from the print connection list that pops up in the browser at the time of printing.
|
31
|
+
- board id (boardId)
|
32
|
+
- Select the board you want to print.
|
33
|
+
- copies (copies)
|
34
|
+
- Set how many copies to print (default value is 1)
|
35
35
|
- value
|
36
|
-
|
37
|
-
|
36
|
+
- The property connected to the value of this component is 'data'.
|
37
|
+
- If the value is not an object or is empty, it is not printed.
|
@@ -1,14 +1,14 @@
|
|
1
1
|
# label printer
|
2
2
|
|
3
|
-
它是将给定标签板打印到通过USB连接的打印机的组件。
|
4
|
-
当前,Zebra的ZPL仅支持通过图像(GRF格式)命令进行打印。
|
5
|
-
因此,如果目标打印机必须是Zebra兼容型号,则它必须支持ZPL的图像(GRF格式)命令。
|
3
|
+
它是将给定标签板打印到通过 USB 连接的打印机的组件。
|
4
|
+
当前,Zebra 的 ZPL 仅支持通过图像(GRF 格式)命令进行打印。
|
5
|
+
因此,如果目标打印机必须是 Zebra 兼容型号,则它必须支持 ZPL 的图像(GRF 格式)命令。
|
6
6
|
|
7
7
|
更改此组件的值或数据时,将激活打印输出功能。
|
8
8
|
打印时,此组件的当前数据(或值)对象将作为目标板的数据进行传输。
|
9
9
|
|
10
10
|
由于使用浏览器的[WebUSB API](https://developer.mozilla.org/en-US/docs/Web/API/USB)函数进行输出,因此仅当通过HTTPS连接时,输出函数才起作用。
|
11
|
-
(如果主机是localhost,则输出功能会异常运行。)
|
11
|
+
(如果主机是 localhost,则输出功能会异常运行。)
|
12
12
|
|
13
13
|
## Browser Compatibility
|
14
14
|
|
@@ -23,13 +23,15 @@
|
|
23
23
|
|
24
24
|
## properties
|
25
25
|
|
26
|
-
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
-
|
32
|
-
- 选择要打印的Board.
|
26
|
+
- 供应商 id (vendorId - optional)
|
27
|
+
- 设置连接到 USB 端口的打印机供应商的 ID。
|
28
|
+
- 例如,Zebra 的供应商 ID 为'0x0A5F'。
|
29
|
+
- 这不是必填字段,如果未输入,则默认使用 Zebra 供应商 ID。
|
30
|
+
- 可以从打印时在浏览器中弹出的打印连接列表中选择目标打印机。
|
31
|
+
- 看板 id (boardId)
|
32
|
+
- 选择要打印的 Board.
|
33
|
+
- 印数 (copies)
|
34
|
+
- 设置要打印的份数(默认值为 1)
|
33
35
|
- value
|
34
|
-
- 连接到该组件的Value的属性是“data”。
|
35
|
-
- 如果value不是对象或为空,则不打印。.
|
36
|
+
- 连接到该组件的 Value 的属性是“data”。
|
37
|
+
- 如果 value 不是对象或为空,则不打印。.
|
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"keep": {
|
3
|
+
"days": true,
|
4
|
+
"amount": 2
|
5
|
+
},
|
6
|
+
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
7
|
+
"files": [
|
8
|
+
{
|
9
|
+
"date": 1656842746243,
|
10
|
+
"name": "logs/application-2022-07-03-19.log",
|
11
|
+
"hash": "1ed973e426c9a6040c84484b1762bb99b6bb9abee6cc0cd6c2881014f7fbc847"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"date": 1656846934501,
|
15
|
+
"name": "logs/application-2022-07-03-20.log",
|
16
|
+
"hash": "95a798528a808e0dee498d8f289dd968dc05b700465f0960c26e548ebbc93d1b"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"date": 1656853013983,
|
20
|
+
"name": "logs/application-2022-07-03-21.log",
|
21
|
+
"hash": "7f1e4bfb08acbbc1b34c7498e11f55987dca2936ee806a300bc8e8051d5b4b79"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"date": 1656853926618,
|
25
|
+
"name": "logs/application-2022-07-03-22.log",
|
26
|
+
"hash": "a54ccc7839dca4c66da4dde782c1622015304b8fa35c2fbac09fc4378a03e190"
|
27
|
+
}
|
28
|
+
],
|
29
|
+
"hashType": "sha256"
|
30
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
{
|
2
|
+
"keep": {
|
3
|
+
"days": true,
|
4
|
+
"amount": 14
|
5
|
+
},
|
6
|
+
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
7
|
+
"files": [
|
8
|
+
{
|
9
|
+
"date": 1655684245525,
|
10
|
+
"name": "logs/connections-2022-06-20-09.log",
|
11
|
+
"hash": "bfba89478f1623607f0448cc4991aeef6d4c3dffefb2fb70a713075982aee7a0"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"date": 1656842749341,
|
15
|
+
"name": "logs/connections-2022-07-03-19.log",
|
16
|
+
"hash": "aefc71a435275c381e13a7bee383a6d2e4604a9fd869ac8a17879fbf1dbde228"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"date": 1656846937641,
|
20
|
+
"name": "logs/connections-2022-07-03-20.log",
|
21
|
+
"hash": "82e68a9d48ecab8c8a4b6fe016530373adc576f8adda329dd58bcda02dacca52"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"date": 1656853019183,
|
25
|
+
"name": "logs/connections-2022-07-03-21.log",
|
26
|
+
"hash": "9f2f4bdd7c90a33ec4535a6803a126e4dfd676157efd17b9d0cc22feffb7f99e"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"date": 1656853929220,
|
30
|
+
"name": "logs/connections-2022-07-03-22.log",
|
31
|
+
"hash": "b3c7f5418efc894f83afcf12e18cbd7f375cc73bbcb329def1c7140765e65d81"
|
32
|
+
}
|
33
|
+
],
|
34
|
+
"hashType": "sha256"
|
35
|
+
}
|
@@ -0,0 +1,4 @@
|
|
1
|
+
2022-06-15T23:37:34+09:00 info: File Storage is Ready.
|
2
|
+
2022-06-15T23:37:39+09:00 info: Database connection established
|
3
|
+
2022-06-15T23:37:40+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
4
|
+
2022-06-15T23:37:40+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
@@ -0,0 +1,4 @@
|
|
1
|
+
2022-06-16T17:15:35+09:00 info: File Storage is Ready.
|
2
|
+
2022-06-16T17:15:39+09:00 info: Database connection established
|
3
|
+
2022-06-16T17:15:40+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
4
|
+
2022-06-16T17:15:40+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
@@ -0,0 +1,16 @@
|
|
1
|
+
2022-07-03T19:05:47+09:00 info: File Storage is Ready.
|
2
|
+
2022-07-03T19:05:53+09:00 info: Database connection established
|
3
|
+
2022-07-03T19:05:54+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
4
|
+
2022-07-03T19:05:54+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
5
|
+
2022-07-03T19:37:52+09:00 info: File Storage is Ready.
|
6
|
+
2022-07-03T19:37:57+09:00 info: Database connection established
|
7
|
+
2022-07-03T19:37:58+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
8
|
+
2022-07-03T19:37:58+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
9
|
+
2022-07-03T19:43:32+09:00 info: File Storage is Ready.
|
10
|
+
2022-07-03T19:43:37+09:00 info: Database connection established
|
11
|
+
2022-07-03T19:43:38+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
12
|
+
2022-07-03T19:43:38+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
13
|
+
2022-07-03T19:49:10+09:00 info: File Storage is Ready.
|
14
|
+
2022-07-03T19:49:15+09:00 info: Database connection established
|
15
|
+
2022-07-03T19:49:17+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
16
|
+
2022-07-03T19:49:17+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
@@ -0,0 +1,12 @@
|
|
1
|
+
2022-07-03T20:15:36+09:00 info: File Storage is Ready.
|
2
|
+
2022-07-03T20:15:41+09:00 info: Database connection established
|
3
|
+
2022-07-03T20:15:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
4
|
+
2022-07-03T20:15:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
5
|
+
2022-07-03T20:20:21+09:00 info: File Storage is Ready.
|
6
|
+
2022-07-03T20:20:26+09:00 info: Database connection established
|
7
|
+
2022-07-03T20:20:27+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
8
|
+
2022-07-03T20:20:27+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
9
|
+
2022-07-03T20:28:09+09:00 info: File Storage is Ready.
|
10
|
+
2022-07-03T20:28:19+09:00 info: Database connection established
|
11
|
+
2022-07-03T20:28:22+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
12
|
+
2022-07-03T20:28:22+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
@@ -0,0 +1,4 @@
|
|
1
|
+
2022-07-03T21:56:56+09:00 info: File Storage is Ready.
|
2
|
+
2022-07-03T21:57:06+09:00 info: Database connection established
|
3
|
+
2022-07-03T21:57:11+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
4
|
+
2022-07-03T21:57:11+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
@@ -0,0 +1,4 @@
|
|
1
|
+
2022-07-03T22:12:07+09:00 info: File Storage is Ready.
|
2
|
+
2022-07-03T22:12:13+09:00 info: Database connection established
|
3
|
+
2022-07-03T22:12:15+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
4
|
+
2022-07-03T22:12:15+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
@@ -0,0 +1,70 @@
|
|
1
|
+
2022-06-09T23:48:19+09:00 info: Initializing ConnectionManager...
|
2
|
+
2022-06-09T23:48:19+09:00 info: Connector 'echo-back-server' started to ready
|
3
|
+
2022-06-09T23:48:19+09:00 info: Connector 'echo-back' started to ready
|
4
|
+
2022-06-09T23:48:19+09:00 info: Connector 'http-connector' started to ready
|
5
|
+
2022-06-09T23:48:19+09:00 info: Connector 'graphql-connector' started to ready
|
6
|
+
2022-06-09T23:48:19+09:00 info: Connector 'sqlite-connector' started to ready
|
7
|
+
2022-06-09T23:48:19+09:00 info: Connector 'postgresql-connector' started to ready
|
8
|
+
2022-06-09T23:48:19+09:00 info: Connector 'mqtt-connector' started to ready
|
9
|
+
2022-06-09T23:48:19+09:00 info: Connector 'mssql-connector' started to ready
|
10
|
+
2022-06-09T23:48:19+09:00 info: Connector 'oracle-connector' started to ready
|
11
|
+
2022-06-09T23:48:19+09:00 info: Connector 'mysql-connector' started to ready
|
12
|
+
2022-06-09T23:48:19+09:00 info: Connector 'socket-server' started to ready
|
13
|
+
2022-06-09T23:48:19+09:00 info: echo-back-servers are ready
|
14
|
+
2022-06-09T23:48:19+09:00 info: echo-back connections are ready
|
15
|
+
2022-06-09T23:48:19+09:00 info: http-connector connections are ready
|
16
|
+
2022-06-09T23:48:19+09:00 info: graphql-connector connections are ready
|
17
|
+
2022-06-09T23:48:19+09:00 info: sqlite-connector connections are ready
|
18
|
+
2022-06-09T23:48:19+09:00 info: postgresql-connector connections are ready
|
19
|
+
2022-06-09T23:48:19+09:00 info: mqtt-connector connections are ready
|
20
|
+
2022-06-09T23:48:19+09:00 info: mssql-connector connections are ready
|
21
|
+
2022-06-09T23:48:19+09:00 info: oracle-connector connections are ready
|
22
|
+
2022-06-09T23:48:19+09:00 info: mysql-connector connections are ready
|
23
|
+
2022-06-09T23:48:19+09:00 info: socket servers are ready
|
24
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'echo-back-server' ready
|
25
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'echo-back' ready
|
26
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'http-connector' ready
|
27
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'graphql-connector' ready
|
28
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'sqlite-connector' ready
|
29
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'postgresql-connector' ready
|
30
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'mqtt-connector' ready
|
31
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'mssql-connector' ready
|
32
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'oracle-connector' ready
|
33
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'mysql-connector' ready
|
34
|
+
2022-06-09T23:48:19+09:00 info: All connector for 'socket-server' ready
|
35
|
+
2022-06-09T23:48:19+09:00 info: ConnectionManager initialization done:
|
36
|
+
2022-06-09T23:59:55+09:00 info: Initializing ConnectionManager...
|
37
|
+
2022-06-09T23:59:55+09:00 info: Connector 'echo-back-server' started to ready
|
38
|
+
2022-06-09T23:59:55+09:00 info: Connector 'echo-back' started to ready
|
39
|
+
2022-06-09T23:59:55+09:00 info: Connector 'http-connector' started to ready
|
40
|
+
2022-06-09T23:59:55+09:00 info: Connector 'graphql-connector' started to ready
|
41
|
+
2022-06-09T23:59:55+09:00 info: Connector 'sqlite-connector' started to ready
|
42
|
+
2022-06-09T23:59:55+09:00 info: Connector 'postgresql-connector' started to ready
|
43
|
+
2022-06-09T23:59:55+09:00 info: Connector 'mqtt-connector' started to ready
|
44
|
+
2022-06-09T23:59:55+09:00 info: Connector 'mssql-connector' started to ready
|
45
|
+
2022-06-09T23:59:55+09:00 info: Connector 'oracle-connector' started to ready
|
46
|
+
2022-06-09T23:59:55+09:00 info: Connector 'mysql-connector' started to ready
|
47
|
+
2022-06-09T23:59:55+09:00 info: Connector 'socket-server' started to ready
|
48
|
+
2022-06-09T23:59:55+09:00 info: echo-back-servers are ready
|
49
|
+
2022-06-09T23:59:55+09:00 info: echo-back connections are ready
|
50
|
+
2022-06-09T23:59:55+09:00 info: http-connector connections are ready
|
51
|
+
2022-06-09T23:59:55+09:00 info: graphql-connector connections are ready
|
52
|
+
2022-06-09T23:59:55+09:00 info: sqlite-connector connections are ready
|
53
|
+
2022-06-09T23:59:55+09:00 info: postgresql-connector connections are ready
|
54
|
+
2022-06-09T23:59:55+09:00 info: mqtt-connector connections are ready
|
55
|
+
2022-06-09T23:59:55+09:00 info: mssql-connector connections are ready
|
56
|
+
2022-06-09T23:59:55+09:00 info: oracle-connector connections are ready
|
57
|
+
2022-06-09T23:59:55+09:00 info: mysql-connector connections are ready
|
58
|
+
2022-06-09T23:59:55+09:00 info: socket servers are ready
|
59
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'echo-back-server' ready
|
60
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'echo-back' ready
|
61
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'http-connector' ready
|
62
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'graphql-connector' ready
|
63
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'sqlite-connector' ready
|
64
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'postgresql-connector' ready
|
65
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'mqtt-connector' ready
|
66
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'mssql-connector' ready
|
67
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'oracle-connector' ready
|
68
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'mysql-connector' ready
|
69
|
+
2022-06-09T23:59:55+09:00 info: All connector for 'socket-server' ready
|
70
|
+
2022-06-09T23:59:55+09:00 info: ConnectionManager initialization done:
|
@@ -0,0 +1,35 @@
|
|
1
|
+
2022-06-13T11:50:42+09:00 info: Initializing ConnectionManager...
|
2
|
+
2022-06-13T11:50:42+09:00 info: Connector 'echo-back-server' started to ready
|
3
|
+
2022-06-13T11:50:42+09:00 info: Connector 'echo-back' started to ready
|
4
|
+
2022-06-13T11:50:42+09:00 info: Connector 'http-connector' started to ready
|
5
|
+
2022-06-13T11:50:42+09:00 info: Connector 'graphql-connector' started to ready
|
6
|
+
2022-06-13T11:50:42+09:00 info: Connector 'sqlite-connector' started to ready
|
7
|
+
2022-06-13T11:50:42+09:00 info: Connector 'postgresql-connector' started to ready
|
8
|
+
2022-06-13T11:50:42+09:00 info: Connector 'mqtt-connector' started to ready
|
9
|
+
2022-06-13T11:50:42+09:00 info: Connector 'mssql-connector' started to ready
|
10
|
+
2022-06-13T11:50:42+09:00 info: Connector 'oracle-connector' started to ready
|
11
|
+
2022-06-13T11:50:42+09:00 info: Connector 'mysql-connector' started to ready
|
12
|
+
2022-06-13T11:50:42+09:00 info: Connector 'socket-server' started to ready
|
13
|
+
2022-06-13T11:50:42+09:00 info: echo-back-servers are ready
|
14
|
+
2022-06-13T11:50:42+09:00 info: echo-back connections are ready
|
15
|
+
2022-06-13T11:50:42+09:00 info: http-connector connections are ready
|
16
|
+
2022-06-13T11:50:42+09:00 info: graphql-connector connections are ready
|
17
|
+
2022-06-13T11:50:42+09:00 info: sqlite-connector connections are ready
|
18
|
+
2022-06-13T11:50:42+09:00 info: postgresql-connector connections are ready
|
19
|
+
2022-06-13T11:50:42+09:00 info: mqtt-connector connections are ready
|
20
|
+
2022-06-13T11:50:42+09:00 info: mssql-connector connections are ready
|
21
|
+
2022-06-13T11:50:42+09:00 info: oracle-connector connections are ready
|
22
|
+
2022-06-13T11:50:42+09:00 info: mysql-connector connections are ready
|
23
|
+
2022-06-13T11:50:42+09:00 info: socket servers are ready
|
24
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'echo-back-server' ready
|
25
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'echo-back' ready
|
26
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'http-connector' ready
|
27
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'graphql-connector' ready
|
28
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'sqlite-connector' ready
|
29
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'postgresql-connector' ready
|
30
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'mqtt-connector' ready
|
31
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'mssql-connector' ready
|
32
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'oracle-connector' ready
|
33
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'mysql-connector' ready
|
34
|
+
2022-06-13T11:50:42+09:00 info: All connector for 'socket-server' ready
|
35
|
+
2022-06-13T11:50:42+09:00 info: ConnectionManager initialization done:
|
@@ -0,0 +1,35 @@
|
|
1
|
+
2022-06-13T12:01:55+09:00 info: Initializing ConnectionManager...
|
2
|
+
2022-06-13T12:01:55+09:00 info: Connector 'echo-back-server' started to ready
|
3
|
+
2022-06-13T12:01:55+09:00 info: Connector 'echo-back' started to ready
|
4
|
+
2022-06-13T12:01:55+09:00 info: Connector 'http-connector' started to ready
|
5
|
+
2022-06-13T12:01:55+09:00 info: Connector 'graphql-connector' started to ready
|
6
|
+
2022-06-13T12:01:55+09:00 info: Connector 'sqlite-connector' started to ready
|
7
|
+
2022-06-13T12:01:55+09:00 info: Connector 'postgresql-connector' started to ready
|
8
|
+
2022-06-13T12:01:55+09:00 info: Connector 'mqtt-connector' started to ready
|
9
|
+
2022-06-13T12:01:55+09:00 info: Connector 'mssql-connector' started to ready
|
10
|
+
2022-06-13T12:01:55+09:00 info: Connector 'oracle-connector' started to ready
|
11
|
+
2022-06-13T12:01:55+09:00 info: Connector 'mysql-connector' started to ready
|
12
|
+
2022-06-13T12:01:55+09:00 info: Connector 'socket-server' started to ready
|
13
|
+
2022-06-13T12:01:55+09:00 info: echo-back-servers are ready
|
14
|
+
2022-06-13T12:01:55+09:00 info: echo-back connections are ready
|
15
|
+
2022-06-13T12:01:55+09:00 info: http-connector connections are ready
|
16
|
+
2022-06-13T12:01:55+09:00 info: graphql-connector connections are ready
|
17
|
+
2022-06-13T12:01:55+09:00 info: sqlite-connector connections are ready
|
18
|
+
2022-06-13T12:01:55+09:00 info: postgresql-connector connections are ready
|
19
|
+
2022-06-13T12:01:55+09:00 info: mqtt-connector connections are ready
|
20
|
+
2022-06-13T12:01:55+09:00 info: mssql-connector connections are ready
|
21
|
+
2022-06-13T12:01:55+09:00 info: oracle-connector connections are ready
|
22
|
+
2022-06-13T12:01:55+09:00 info: mysql-connector connections are ready
|
23
|
+
2022-06-13T12:01:55+09:00 info: socket servers are ready
|
24
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'echo-back-server' ready
|
25
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'echo-back' ready
|
26
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'http-connector' ready
|
27
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'graphql-connector' ready
|
28
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'sqlite-connector' ready
|
29
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'postgresql-connector' ready
|
30
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'mqtt-connector' ready
|
31
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'mssql-connector' ready
|
32
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'oracle-connector' ready
|
33
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'mysql-connector' ready
|
34
|
+
2022-06-13T12:01:55+09:00 info: All connector for 'socket-server' ready
|
35
|
+
2022-06-13T12:01:55+09:00 info: ConnectionManager initialization done:
|
@@ -0,0 +1,35 @@
|
|
1
|
+
2022-06-15T23:37:40+09:00 info: Initializing ConnectionManager...
|
2
|
+
2022-06-15T23:37:40+09:00 info: Connector 'echo-back-server' started to ready
|
3
|
+
2022-06-15T23:37:40+09:00 info: Connector 'echo-back' started to ready
|
4
|
+
2022-06-15T23:37:40+09:00 info: Connector 'http-connector' started to ready
|
5
|
+
2022-06-15T23:37:40+09:00 info: Connector 'graphql-connector' started to ready
|
6
|
+
2022-06-15T23:37:40+09:00 info: Connector 'sqlite-connector' started to ready
|
7
|
+
2022-06-15T23:37:40+09:00 info: Connector 'postgresql-connector' started to ready
|
8
|
+
2022-06-15T23:37:40+09:00 info: Connector 'mqtt-connector' started to ready
|
9
|
+
2022-06-15T23:37:40+09:00 info: Connector 'mssql-connector' started to ready
|
10
|
+
2022-06-15T23:37:40+09:00 info: Connector 'oracle-connector' started to ready
|
11
|
+
2022-06-15T23:37:40+09:00 info: Connector 'mysql-connector' started to ready
|
12
|
+
2022-06-15T23:37:40+09:00 info: Connector 'socket-server' started to ready
|
13
|
+
2022-06-15T23:37:40+09:00 info: echo-back-servers are ready
|
14
|
+
2022-06-15T23:37:40+09:00 info: echo-back connections are ready
|
15
|
+
2022-06-15T23:37:40+09:00 info: http-connector connections are ready
|
16
|
+
2022-06-15T23:37:40+09:00 info: graphql-connector connections are ready
|
17
|
+
2022-06-15T23:37:40+09:00 info: sqlite-connector connections are ready
|
18
|
+
2022-06-15T23:37:40+09:00 info: postgresql-connector connections are ready
|
19
|
+
2022-06-15T23:37:40+09:00 info: mqtt-connector connections are ready
|
20
|
+
2022-06-15T23:37:40+09:00 info: mssql-connector connections are ready
|
21
|
+
2022-06-15T23:37:40+09:00 info: oracle-connector connections are ready
|
22
|
+
2022-06-15T23:37:40+09:00 info: mysql-connector connections are ready
|
23
|
+
2022-06-15T23:37:40+09:00 info: socket servers are ready
|
24
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'echo-back-server' ready
|
25
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'echo-back' ready
|
26
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'http-connector' ready
|
27
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'graphql-connector' ready
|
28
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'sqlite-connector' ready
|
29
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'postgresql-connector' ready
|
30
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'mqtt-connector' ready
|
31
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'mssql-connector' ready
|
32
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'oracle-connector' ready
|
33
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'mysql-connector' ready
|
34
|
+
2022-06-15T23:37:40+09:00 info: All connector for 'socket-server' ready
|
35
|
+
2022-06-15T23:37:40+09:00 info: ConnectionManager initialization done:
|
@@ -0,0 +1,35 @@
|
|
1
|
+
2022-06-16T17:15:41+09:00 info: Initializing ConnectionManager...
|
2
|
+
2022-06-16T17:15:41+09:00 info: Connector 'echo-back-server' started to ready
|
3
|
+
2022-06-16T17:15:41+09:00 info: Connector 'echo-back' started to ready
|
4
|
+
2022-06-16T17:15:41+09:00 info: Connector 'http-connector' started to ready
|
5
|
+
2022-06-16T17:15:41+09:00 info: Connector 'graphql-connector' started to ready
|
6
|
+
2022-06-16T17:15:41+09:00 info: Connector 'sqlite-connector' started to ready
|
7
|
+
2022-06-16T17:15:41+09:00 info: Connector 'postgresql-connector' started to ready
|
8
|
+
2022-06-16T17:15:41+09:00 info: Connector 'mqtt-connector' started to ready
|
9
|
+
2022-06-16T17:15:41+09:00 info: Connector 'mssql-connector' started to ready
|
10
|
+
2022-06-16T17:15:41+09:00 info: Connector 'oracle-connector' started to ready
|
11
|
+
2022-06-16T17:15:41+09:00 info: Connector 'mysql-connector' started to ready
|
12
|
+
2022-06-16T17:15:41+09:00 info: Connector 'socket-server' started to ready
|
13
|
+
2022-06-16T17:15:41+09:00 info: echo-back-servers are ready
|
14
|
+
2022-06-16T17:15:41+09:00 info: echo-back connections are ready
|
15
|
+
2022-06-16T17:15:41+09:00 info: http-connector connections are ready
|
16
|
+
2022-06-16T17:15:41+09:00 info: graphql-connector connections are ready
|
17
|
+
2022-06-16T17:15:41+09:00 info: sqlite-connector connections are ready
|
18
|
+
2022-06-16T17:15:41+09:00 info: postgresql-connector connections are ready
|
19
|
+
2022-06-16T17:15:41+09:00 info: mqtt-connector connections are ready
|
20
|
+
2022-06-16T17:15:41+09:00 info: mssql-connector connections are ready
|
21
|
+
2022-06-16T17:15:41+09:00 info: oracle-connector connections are ready
|
22
|
+
2022-06-16T17:15:41+09:00 info: mysql-connector connections are ready
|
23
|
+
2022-06-16T17:15:41+09:00 info: socket servers are ready
|
24
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'echo-back-server' ready
|
25
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'echo-back' ready
|
26
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'http-connector' ready
|
27
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'graphql-connector' ready
|
28
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'sqlite-connector' ready
|
29
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'postgresql-connector' ready
|
30
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'mqtt-connector' ready
|
31
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'mssql-connector' ready
|
32
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'oracle-connector' ready
|
33
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'mysql-connector' ready
|
34
|
+
2022-06-16T17:15:41+09:00 info: All connector for 'socket-server' ready
|
35
|
+
2022-06-16T17:15:41+09:00 info: ConnectionManager initialization done:
|