From 361092378f857fe21e2b519a24f5e0a4ee5b232f Mon Sep 17 00:00:00 2001 From: Ko SeongChan Date: Wed, 8 May 2024 23:45:08 +0900 Subject: [PATCH 01/11] =?UTF-8?q?=EC=A0=80=EC=9E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/sharenote/NoteActivity.kt | 1 + .../com/example/sharenote/PageActivity.kt | 8 +- .../service/OrganizationService.java | 4 +- frontend/src/setupProxy.js | 4 +- nodejs/server.js | 4 +- nodejs/server.log | 281 ++++++++++++++++++ 6 files changed, 293 insertions(+), 9 deletions(-) diff --git a/android/app/src/main/java/com/example/sharenote/NoteActivity.kt b/android/app/src/main/java/com/example/sharenote/NoteActivity.kt index 9f2e0848..b5ec3bef 100644 --- a/android/app/src/main/java/com/example/sharenote/NoteActivity.kt +++ b/android/app/src/main/java/com/example/sharenote/NoteActivity.kt @@ -83,6 +83,7 @@ class NoteActivity : AppCompatActivity(), PageListAdapter.OnPageClickListener { } override fun onPageClick(page: Page) { + saveRecentPageId(page.id) val intent = Intent(this, PageActivity::class.java) startActivity(intent) } diff --git a/android/app/src/main/java/com/example/sharenote/PageActivity.kt b/android/app/src/main/java/com/example/sharenote/PageActivity.kt index f40aecc8..08430e06 100644 --- a/android/app/src/main/java/com/example/sharenote/PageActivity.kt +++ b/android/app/src/main/java/com/example/sharenote/PageActivity.kt @@ -80,15 +80,16 @@ class PageActivity : AppCompatActivity() { // SharedPreferencesUtil을 사용하여 WorkSpaceId와 NoteId를 불러옵니다. val workspaceId = SharedPreferencesUtil.getRecentWorkspaceId(this) val noteId = SharedPreferencesUtil.getRecentNoteId(this) + val pageId = SharedPreferencesUtil.getRecentPageId(this) - webView.loadUrl("https://sharenote.shop/organization/$workspaceId/$noteId") + webView.loadUrl("https://sharenote.shop/organization/$workspaceId/$noteId/$pageId") // 플로팅 버튼 클릭시 에니메이션 동작 기능 floating.setOnClickListener { toggleFab() } - + fabDraw.setOnClickListener { val intent = Intent(this, PaintActivity::class.java) @@ -96,6 +97,7 @@ class PageActivity : AppCompatActivity() { } } + /* override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) { super.onActivityResult(requestCode, resultCode, data) if (requestCode == REQUEST_IMAGE_SELECTION && resultCode == Activity.RESULT_OK) { @@ -114,7 +116,7 @@ class PageActivity : AppCompatActivity() { webView.evaluateJavascript(script, null) } } - } + }*/ companion object { diff --git a/backend/shareNote/src/main/java/com/Backend/shareNote/domain/Oraganization/service/OrganizationService.java b/backend/shareNote/src/main/java/com/Backend/shareNote/domain/Oraganization/service/OrganizationService.java index d00aa591..3031ef25 100644 --- a/backend/shareNote/src/main/java/com/Backend/shareNote/domain/Oraganization/service/OrganizationService.java +++ b/backend/shareNote/src/main/java/com/Backend/shareNote/domain/Oraganization/service/OrganizationService.java @@ -103,8 +103,8 @@ public ResponseEntity inviteOrganization(OrganizationInvitation invitati //쿼리 파라미터로 동작 //이 링크 클릭 시 토큰을 localStorage에 저장하고 //login 시 토큰을 가져와서 organization 초대 수락하기 - //emailDTO.setLink("http://localhost:3000/organization/invitation/approve?token=" + Token); - emailDTO.setLink("http://sharenote.shop/organization/invitation/approve?token=" + Token); + emailDTO.setLink("http://localhost:3000/organization/invitation/approve?token=" + Token); + //emailDTO.setLink("http://sharenote.shop/organization/invitation/approve?token=" + Token); emailService.sendMail(emailDTO); return ResponseEntity.ok("초대장 전송 완료"); } diff --git a/frontend/src/setupProxy.js b/frontend/src/setupProxy.js index a9992379..5be42f70 100644 --- a/frontend/src/setupProxy.js +++ b/frontend/src/setupProxy.js @@ -4,8 +4,8 @@ module.exports = function(app) { app.use( '/api', createProxyMiddleware({ - // target: 'http://localhost:8080', // 서버 URL or localhost:설정한포트번호 - target: 'http://sharenote.shop:8080', // 서버 URL or localhost:설정한포트번호 + target: 'http://localhost:8080', // 서버 URL or localhost:설정한포트번호 + //target: 'http://sharenote.shop:8080', // 서버 URL or localhost:설정한포트번호 changeOrigin: true, }) ); diff --git a/nodejs/server.js b/nodejs/server.js index b925f55f..6fe116bd 100644 --- a/nodejs/server.js +++ b/nodejs/server.js @@ -24,8 +24,8 @@ const databaseName = 'shareDB'; function createConnectionString(databaseName) { logger.info(`@@@@@@@@@@@mongodb://root:1234@localhost:27017/${databaseName}?authSource=admin`); - //return `mongodb://root:1234@localhost:27017/${databaseName}?authSource=admin`; - return `mongodb://root:1234@mongodbService:27017/${databaseName}?authSource=admin`; + return `mongodb://root:1234@localhost:27017/${databaseName}?authSource=admin`; + //return `mongodb://root:1234@mongodbService:27017/${databaseName}?authSource=admin`; } const server = http.createServer((req, res) => { diff --git a/nodejs/server.log b/nodejs/server.log index e920f3a9..3f31261d 100644 --- a/nodejs/server.log +++ b/nodejs/server.log @@ -6,3 +6,284 @@ {"level":"info","message":"웹소켓 연결 요청 URL: /65f86a78b43c401e2cf6f735","timestamp":"2024-03-18T16:23:21.150Z"} {"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-03-18T16:23:25.298Z"} {"level":"info","message":"웹소켓 연결 요청 URL: /65f86a6eb43c401e2cf6f734","timestamp":"2024-03-18T16:23:25.298Z"} +{"level":"info","message":"@@@@@@@@@@@mongodb://root:1234@localhost:27017/shareDB?authSource=admin","timestamp":"2024-05-08T11:31:31.070Z"} +{"level":"info","message":"Server listening on port 4000","timestamp":"2024-05-08T11:31:31.080Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:31:44.736Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:31:44.737Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:31:44.784Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:32:05.582Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:32:05.582Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:32:05.592Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:32:08.444Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T11:32:08.446Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:32:08.453Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:32:11.458Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:32:11.458Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:32:11.468Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:32:12.347Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:32:12.348Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:32:12.369Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:12.174Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:53:12.175Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:12.183Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:28.022Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:53:28.022Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:28.027Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:30.414Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:53:30.414Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:30.419Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:32.600Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:53:32.600Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:32.617Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:34.083Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T11:53:34.083Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:34.090Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:35.372Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:53:35.372Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:35.378Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:36.131Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:53:36.132Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:36.142Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:44.022Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:53:44.023Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:44.031Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:44.995Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T11:53:44.995Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:45.019Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:45.498Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad8673c2924265bd241d","timestamp":"2024-05-08T11:53:45.498Z"} +{"level":"error","message":"Error during persistence binding for 6627ad8673c2924265bd241d: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:45.504Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:45.997Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627b01773c2924265bd241e","timestamp":"2024-05-08T11:53:45.997Z"} +{"level":"error","message":"Error during persistence binding for 6627b01773c2924265bd241e: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:46.003Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:46.455Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627b04d73c2924265bd241f","timestamp":"2024-05-08T11:53:46.455Z"} +{"level":"error","message":"Error during persistence binding for 6627b04d73c2924265bd241f: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:46.461Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:46.840Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627c07b73c2924265bd2420","timestamp":"2024-05-08T11:53:46.840Z"} +{"level":"error","message":"Error during persistence binding for 6627c07b73c2924265bd2420: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:46.847Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:47.390Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /662f47e873c2924265bd2422","timestamp":"2024-05-08T11:53:47.391Z"} +{"level":"error","message":"Error during persistence binding for 662f47e873c2924265bd2422: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:47.397Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:47.845Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /66394251ac37c132544b8f35","timestamp":"2024-05-08T11:53:47.845Z"} +{"level":"error","message":"Error during persistence binding for 66394251ac37c132544b8f35: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:47.856Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:48.896Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /662f47e873c2924265bd2422","timestamp":"2024-05-08T11:53:48.896Z"} +{"level":"error","message":"Error during persistence binding for 662f47e873c2924265bd2422: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:48.899Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:49.460Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627c07b73c2924265bd2420","timestamp":"2024-05-08T11:53:49.460Z"} +{"level":"error","message":"Error during persistence binding for 6627c07b73c2924265bd2420: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:49.465Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:49.808Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627b04d73c2924265bd241f","timestamp":"2024-05-08T11:53:49.809Z"} +{"level":"error","message":"Error during persistence binding for 6627b04d73c2924265bd241f: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:49.813Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:50.134Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627b01773c2924265bd241e","timestamp":"2024-05-08T11:53:50.134Z"} +{"level":"error","message":"Error during persistence binding for 6627b01773c2924265bd241e: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:50.139Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:50.468Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad8673c2924265bd241d","timestamp":"2024-05-08T11:53:50.468Z"} +{"level":"error","message":"Error during persistence binding for 6627ad8673c2924265bd241d: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:50.473Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:50.811Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T11:53:50.812Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:50.818Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:51.168Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:53:51.168Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:51.173Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:53:51.513Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:53:51.513Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:53:51.517Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:56:16.029Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:56:16.030Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:56:16.053Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:57:24.958Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:57:24.958Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:57:24.988Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:57:26.302Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:57:26.302Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:57:26.305Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:57:27.157Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T11:57:27.158Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:57:27.161Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:57:27.892Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad8673c2924265bd241d","timestamp":"2024-05-08T11:57:27.893Z"} +{"level":"error","message":"Error during persistence binding for 6627ad8673c2924265bd241d: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:57:27.897Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:57:38.211Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:57:38.212Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:57:38.217Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:57:43.273Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:57:43.274Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:57:43.276Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:57:55.049Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T11:57:55.049Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:57:55.055Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:57:56.987Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad8673c2924265bd241d","timestamp":"2024-05-08T11:57:56.987Z"} +{"level":"error","message":"Error during persistence binding for 6627ad8673c2924265bd241d: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:57:56.999Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:58:06.477Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T11:58:06.478Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:58:06.480Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:58:07.326Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T11:58:07.327Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:58:07.343Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:59:12.966Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:59:12.967Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:59:12.974Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T11:59:48.931Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T11:59:48.931Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T11:59:48.935Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:04:56.681Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T12:04:56.681Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:04:56.685Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:04:58.494Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T12:04:58.494Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:04:58.499Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:06:56.217Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T12:06:56.217Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:07:16.897Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T12:07:16.899Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:07:16.926Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:07:17.868Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T12:07:17.868Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:07:17.873Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:07:18.454Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad8673c2924265bd241d","timestamp":"2024-05-08T12:07:18.454Z"} +{"level":"error","message":"Error during persistence binding for 6627ad8673c2924265bd241d: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:07:18.459Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:07:19.197Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T12:07:19.198Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:07:19.207Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:07:19.495Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T12:07:19.496Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:07:19.508Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:07:19.927Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T12:07:19.927Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:07:21.666Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T12:07:21.667Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:07:21.678Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:07:22.601Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T12:07:22.601Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:09:13.841Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T12:09:13.841Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:09:13.849Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:10:11.621Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T12:10:11.625Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:10:11.644Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:10:14.035Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T12:10:14.035Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:10:14.038Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:10:14.378Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T12:10:14.378Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:10:20.453Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T12:10:20.453Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:10:20.460Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:12:26.248Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T12:12:26.248Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:12:37.150Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T12:12:37.150Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:12:37.165Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:12:38.643Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T12:12:38.644Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:12:54.002Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T12:12:54.002Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:12:54.005Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:12:57.657Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T12:12:57.658Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:12:57.666Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T12:13:21.431Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T12:13:21.432Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T12:13:21.442Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:07:29.926Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T14:07:29.926Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:07:29.983Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:08:55.621Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:08:55.622Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:08:55.652Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:09:01.417Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:09:01.418Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:09:01.443Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:10:20.263Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /662797c473c2924265bd2416","timestamp":"2024-05-08T14:10:20.264Z"} +{"level":"error","message":"Error during persistence binding for 662797c473c2924265bd2416: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:10:20.303Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:10:23.051Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:10:23.052Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:10:23.071Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:17.199Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:12:17.202Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:17.214Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:19.004Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T14:12:19.004Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:19.008Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:20.229Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T14:12:20.229Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:20.234Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:20.807Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad8673c2924265bd241d","timestamp":"2024-05-08T14:12:20.807Z"} +{"level":"error","message":"Error during persistence binding for 6627ad8673c2924265bd241d: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:20.815Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:21.237Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627b01773c2924265bd241e","timestamp":"2024-05-08T14:12:21.237Z"} +{"level":"error","message":"Error during persistence binding for 6627b01773c2924265bd241e: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:21.241Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:21.644Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627b04d73c2924265bd241f","timestamp":"2024-05-08T14:12:21.644Z"} +{"level":"error","message":"Error during persistence binding for 6627b04d73c2924265bd241f: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:21.648Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:22.062Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627c07b73c2924265bd2420","timestamp":"2024-05-08T14:12:22.062Z"} +{"level":"error","message":"Error during persistence binding for 6627c07b73c2924265bd2420: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:22.068Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:22.490Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /662f47e873c2924265bd2422","timestamp":"2024-05-08T14:12:22.491Z"} +{"level":"error","message":"Error during persistence binding for 662f47e873c2924265bd2422: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:22.497Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:22.908Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /66394251ac37c132544b8f35","timestamp":"2024-05-08T14:12:22.908Z"} +{"level":"error","message":"Error during persistence binding for 66394251ac37c132544b8f35: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:22.912Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:23.319Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /663b881712a4095db523585d","timestamp":"2024-05-08T14:12:23.320Z"} +{"level":"error","message":"Error during persistence binding for 663b881712a4095db523585d: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:23.323Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:23.747Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /663b883312a4095db523585e","timestamp":"2024-05-08T14:12:23.747Z"} +{"level":"error","message":"Error during persistence binding for 663b883312a4095db523585e: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:23.759Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:12:30.107Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:12:30.108Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:12:30.120Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:17:22.095Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T14:17:22.097Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:17:22.104Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:21:36.782Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:21:36.782Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:21:36.785Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:22:18.884Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:22:18.884Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:22:18.888Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:30:37.783Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T14:30:37.783Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:30:37.786Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:30:47.140Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:30:47.140Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:30:47.143Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:35:25.969Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T14:35:25.970Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:35:25.979Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:35:49.516Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T14:35:49.517Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:35:49.519Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:35:50.189Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad8673c2924265bd241d","timestamp":"2024-05-08T14:35:50.190Z"} +{"level":"error","message":"Error during persistence binding for 6627ad8673c2924265bd241d: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:35:50.195Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:35:50.662Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627b01773c2924265bd241e","timestamp":"2024-05-08T14:35:50.662Z"} +{"level":"error","message":"Error during persistence binding for 6627b01773c2924265bd241e: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:35:50.666Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:35:51.482Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad8673c2924265bd241d","timestamp":"2024-05-08T14:35:51.482Z"} +{"level":"error","message":"Error during persistence binding for 6627ad8673c2924265bd241d: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:35:51.502Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:35:51.832Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627ad1a73c2924265bd241b","timestamp":"2024-05-08T14:35:51.832Z"} +{"level":"error","message":"Error during persistence binding for 6627ad1a73c2924265bd241b: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:35:51.836Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:35:52.227Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T14:35:52.227Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:35:52.233Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:35:52.594Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:35:52.594Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:35:52.600Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:35:58.979Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /6627aac773c2924265bd2419","timestamp":"2024-05-08T14:35:58.979Z"} +{"level":"error","message":"Error during persistence binding for 6627aac773c2924265bd2419: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:35:58.982Z"} +{"level":"error","message":"웹소켓 도착하긴 함","timestamp":"2024-05-08T14:36:54.639Z"} +{"level":"info","message":"웹소켓 연결 요청 URL: /661e9f4973c2924265bd2410","timestamp":"2024-05-08T14:36:54.640Z"} +{"level":"error","message":"Error during persistence binding for 661e9f4973c2924265bd2410: Cannot read properties of undefined (reading '_transactionCleanups')","stack":"TypeError: Cannot read properties of undefined (reading '_transactionCleanups')\n at transact (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:3400:35)\n at readUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1682:3)\n at applyUpdateV2 (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1777:3)\n at Object.applyUpdate (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/node_modules/yjs/dist/yjs.cjs:1791:58)\n at Object.bindState (/Users/ksc3711/Desktop/졸업작품/Code-Bridge/nodejs/server.js:76:14)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)","timestamp":"2024-05-08T14:36:54.645Z"} From 992bbee33bddfdf727e224d9eaa52aa34f9f0efd Mon Sep 17 00:00:00 2001 From: Ko SeongChan Date: Sun, 12 May 2024 12:23:47 +0900 Subject: [PATCH 02/11] =?UTF-8?q?=EA=B8=B0=ED=83=80=EC=82=AC=ED=95=AD=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/example/sharenote/HomeFragment.kt | 5 +++++ .../main/java/com/example/sharenote/NoteActivity.kt | 6 ++++++ .../java/com/example/sharenote/PageListAdapter.kt | 8 ++------ android/app/src/main/res/layout/item_page.xml | 9 --------- android/app/src/main/res/layout/org_info_layout.xml | 13 +++++++++++-- 5 files changed, 24 insertions(+), 17 deletions(-) diff --git a/android/app/src/main/java/com/example/sharenote/HomeFragment.kt b/android/app/src/main/java/com/example/sharenote/HomeFragment.kt index dda09a56..870f338e 100644 --- a/android/app/src/main/java/com/example/sharenote/HomeFragment.kt +++ b/android/app/src/main/java/com/example/sharenote/HomeFragment.kt @@ -177,6 +177,7 @@ class HomeFragment : Fragment() { override fun onWorkSpaceClick(workSpace: WorkSpace) { // 워크스페이스를 클릭했을 때 처리할 내용을 여기에 작성합니다. saveRecentWorkspaceId(workSpace.id) + saveRecentWorkspaceName(workSpace.name) val MainIntent = Intent(requireContext(), MainActivity::class.java) startActivity(MainIntent) requireActivity().finish() @@ -482,6 +483,10 @@ class HomeFragment : Fragment() { SharedPreferencesUtil.saveRecentWorkspaceId(requireContext(), workspaceId) } + private fun saveRecentWorkspaceName(workspaceName: String) { + SharedPreferencesUtil.saveRecentWorkspaceName(requireContext(), workspaceName) + } + private fun getRecentWorkspaceId(): String? { return SharedPreferencesUtil.getRecentWorkspaceId(requireContext()) } diff --git a/android/app/src/main/java/com/example/sharenote/NoteActivity.kt b/android/app/src/main/java/com/example/sharenote/NoteActivity.kt index b5ec3bef..3f023de9 100644 --- a/android/app/src/main/java/com/example/sharenote/NoteActivity.kt +++ b/android/app/src/main/java/com/example/sharenote/NoteActivity.kt @@ -235,6 +235,12 @@ class NoteActivity : AppCompatActivity(), PageListAdapter.OnPageClickListener { val popupView = LayoutInflater.from(this).inflate(R.layout.org_info_layout, null) + // 워크스페이스 이름을 표시할 텍스트뷰 선언 + val organizationTextView = popupView.findViewById(R.id.Organization) + + val workspaceName = SharedPreferencesUtil.getRecentWorkspaceName(this) + organizationTextView.text = workspaceName + // 팝업 창을 생성 orgPopupWindow = PopupWindow( diff --git a/android/app/src/main/java/com/example/sharenote/PageListAdapter.kt b/android/app/src/main/java/com/example/sharenote/PageListAdapter.kt index 6b65812d..a327fe21 100644 --- a/android/app/src/main/java/com/example/sharenote/PageListAdapter.kt +++ b/android/app/src/main/java/com/example/sharenote/PageListAdapter.kt @@ -28,14 +28,11 @@ class PageListAdapter(private val pages: MutableList, private val onPageCl override fun onBindViewHolder(holder: PageViewHolder, position: Int) { val currentPage = pages[position] - holder.idViewText.text = currentPage.id - holder.userViewText.text = currentPage.createUser + holder.idViewText.text = "PageId\n${currentPage.id}" + holder.userViewText.text = "UserId\n${currentPage.createUser}" holder.atViewText.text = currentPage.createdAt - holder.buttonDeletePage.setOnClickListener { - deletePage(holder.adapterPosition) - } // 페이지를 클릭하면 해당 페이지의 정보를 전달합니다. holder.itemView.setOnClickListener { @@ -72,6 +69,5 @@ class PageListAdapter(private val pages: MutableList, private val onPageCl val idViewText: TextView = itemView.findViewById(R.id.idViewText) val userViewText: TextView = itemView.findViewById(R.id.userViewText) val atViewText: TextView = itemView.findViewById(R.id.atViewText) - val buttonDeletePage: Button = itemView.findViewById(R.id.buttonDeletePage) } } diff --git a/android/app/src/main/res/layout/item_page.xml b/android/app/src/main/res/layout/item_page.xml index 96e28c5b..d271e73e 100644 --- a/android/app/src/main/res/layout/item_page.xml +++ b/android/app/src/main/res/layout/item_page.xml @@ -49,15 +49,6 @@ android:scaleType="fitCenter" /> -