1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-20 20:39:23 -05:00
This commit is contained in:
syuilo 2019-11-24 16:43:19 +09:00 committed by GitHub
parent b241967fb9
commit 9c38e9722a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -103,7 +103,7 @@ export default class Logger {
worker: worker.toString(),
domain: [this.domain].concat(subDomains).map(d => d.name),
level: level,
message: message,
message: message.substr(0, 1000), // 1024を超えるとログが挿入できずエラーになり無限ループする
data: data,
} as Log);
}