Compare commits

...

2 Commits

Author SHA1 Message Date
uberwald 967383f5b3 COrrection sur icones des effets
Release Creation / build (release) Successful in 55s
2026-04-25 09:20:15 +02:00
uberwald e4cc556705 Fix beguiling boon
Release Creation / build (release) Successful in 48s
2026-04-18 17:48:30 +02:00
93 changed files with 319 additions and 322 deletions
+5 -1
View File
@@ -1,7 +1,7 @@
{
"label": "Boons",
"mapping": {
"description": "system.description"
"description": "system.description"
},
"entries": {
"Agilité de lhomme-oiseau": {
@@ -96,6 +96,10 @@
"name": "Plains-Born",
"description": "<h1>Plains-Born</h1><p>You grew up on the plains. When tracking, trapping, hunting, or carrying out other similar activities (not fighting) in a plains environment, you receive a bonus die.</p>"
},
"Envoûtant": {
"name": "Beguiling",
"description": "<h1>Beguiling</h1><p> Your looks and bearing are such that people who might be attracted to your type are enchanted by you. Once per day you may suggest a course of action to a number of rabble equal to appeal + d6, who will do their best to please you, even if it potentially puts them in danger.</p><p>You must have the temptress career to take this boon.</p>"
},
"Fortuné": {
"name": "Great Wealth",
"description": "<h1>Great Wealth</h1><p>You have a source of income or an inheritance. Roll a bonus die on any attempt to obtain any goods, services, or other items you need whilst in your home city.</p>"
+2 -2
View File
@@ -866,12 +866,12 @@ export class BoLActor extends Actor {
if (this.system.resources.hp.value <= 0) {
if (!prone) {
await this.createEmbeddedDocuments("ActiveEffect", [
{ name: game.i18n.localize('EFFECT.StatusProne'), icon: 'icons/svg/falling.svg', statuses: 'prone' }
{ name: game.i18n.localize('EFFECT.StatusProne'), img: 'icons/svg/falling.svg', statuses: ['prone'] }
])
}
if (this.system.resources.hp.value < -5 && !dead) {
await this.createEmbeddedDocuments("ActiveEffect", [
{ name: game.i18n.localize('EFFECT.StatusDead'), icon: 'icons/svg/skull.svg', statuses: 'dead' }
{ name: game.i18n.localize('EFFECT.StatusDead'), img: 'icons/svg/skull.svg', statuses: ['dead'] }
])
}
ChatMessage.create({
+42 -42
View File
@@ -413,108 +413,108 @@ BOL.bolEffectModifier = {
BOL.statusEffects = [
{
"id": "dead",
"label": "EFFECT.StatusDead",
"icon": "icons/svg/skull.svg"
"name": "EFFECT.StatusDead",
"img": "icons/svg/skull.svg"
},
{
"id": "unconscious",
"label": "EFFECT.StatusUnconscious",
"icon": "icons/svg/unconscious.svg"
"name": "EFFECT.StatusUnconscious",
"img": "icons/svg/unconscious.svg"
},
{
"id": "sleep",
"label": "EFFECT.StatusAsleep",
"icon": "icons/svg/sleep.svg"
"name": "EFFECT.StatusAsleep",
"img": "icons/svg/sleep.svg"
},
{
"id": "stun",
"label": "EFFECT.StatusStunned",
"icon": "icons/svg/daze.svg"
"name": "EFFECT.StatusStunned",
"img": "icons/svg/daze.svg"
},
{
"id": "prone",
"label": "EFFECT.StatusProne",
"icon": "icons/svg/falling.svg"
"name": "EFFECT.StatusProne",
"img": "icons/svg/falling.svg"
},
{
"id": "restrain",
"label": "EFFECT.StatusRestrained",
"icon": "icons/svg/net.svg"
"name": "EFFECT.StatusRestrained",
"img": "icons/svg/net.svg"
},
{
"id": "paralysis",
"label": "EFFECT.StatusParalysis",
"icon": "icons/svg/paralysis.svg"
"name": "EFFECT.StatusParalysis",
"img": "icons/svg/paralysis.svg"
},
{
"id": "fly",
"label": "EFFECT.StatusFlying",
"icon": "icons/svg/wing.svg"
"name": "EFFECT.StatusFlying",
"img": "icons/svg/wing.svg"
},
{
"id": "blind",
"label": "EFFECT.StatusBlind",
"icon": "icons/svg/blind.svg"
"name": "EFFECT.StatusBlind",
"img": "icons/svg/blind.svg"
},
{
"id": "deaf",
"label": "EFFECT.StatusDeaf",
"icon": "icons/svg/deaf.svg"
"name": "EFFECT.StatusDeaf",
"img": "icons/svg/deaf.svg"
},
{
"id": "silence",
"label": "EFFECT.StatusSilenced",
"icon": "icons/svg/silenced.svg"
"name": "EFFECT.StatusSilenced",
"img": "icons/svg/silenced.svg"
},
{
"id": "fear",
"label": "EFFECT.StatusFear",
"icon": "icons/svg/terror.svg"
"name": "EFFECT.StatusFear",
"img": "icons/svg/terror.svg"
},
{
"id": "burning",
"label": "EFFECT.StatusBurning",
"icon": "icons/svg/fire.svg"
"name": "EFFECT.StatusBurning",
"img": "icons/svg/fire.svg"
},
{
"id": "frozen",
"label": "EFFECT.StatusFrozen",
"icon": "icons/svg/frozen.svg"
"name": "EFFECT.StatusFrozen",
"img": "icons/svg/frozen.svg"
},
{
"id": "shock",
"label": "EFFECT.StatusShocked",
"icon": "icons/svg/lightning.svg"
"name": "EFFECT.StatusShocked",
"img": "icons/svg/lightning.svg"
},
{
"id": "disease",
"label": "EFFECT.StatusDisease",
"icon": "icons/svg/biohazard.svg"
"name": "EFFECT.StatusDisease",
"img": "icons/svg/biohazard.svg"
},
{
"id": "poison",
"label": "EFFECT.StatusPoison",
"icon": "icons/svg/poison.svg"
"name": "EFFECT.StatusPoison",
"img": "icons/svg/poison.svg"
},
{
"id": "curse",
"label": "EFFECT.StatusCursed",
"icon": "icons/svg/sun.svg"
"name": "EFFECT.StatusCursed",
"img": "icons/svg/sun.svg"
},
{
"id": "invisible",
"label": "EFFECT.StatusInvisible",
"icon": "icons/svg/invisible.svg"
"name": "EFFECT.StatusInvisible",
"img": "icons/svg/invisible.svg"
},
{
"id": "target",
"label": "EFFECT.StatusTarget",
"icon": "icons/svg/target.svg"
"name": "EFFECT.StatusTarget",
"img": "icons/svg/target.svg"
},
{
"id": "eye",
"label": "EFFECT.StatusMarked",
"icon": "icons/svg/eye.svg"
"name": "EFFECT.StatusMarked",
"img": "icons/svg/eye.svg"
}
]
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001138
MANIFEST-001174
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.733439 7ff3bebfd6c0 Recovering log #1135
2026/04/11-21:28:04.743122 7ff3bebfd6c0 Delete type=3 #1133
2026/04/11-21:28:04.743177 7ff3bebfd6c0 Delete type=0 #1135
2026/04/11-21:28:49.377435 7ff3bdbfb6c0 Level-0 table #1141: started
2026/04/11-21:28:49.377469 7ff3bdbfb6c0 Level-0 table #1141: 0 bytes OK
2026/04/11-21:28:49.413622 7ff3bdbfb6c0 Delete type=0 #1139
2026/04/11-21:28:49.456441 7ff3bdbfb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.559981 7f57a4fed6c0 Recovering log #1172
2026/04/25-09:10:23.569362 7f57a4fed6c0 Delete type=3 #1170
2026/04/25-09:10:23.569431 7f57a4fed6c0 Delete type=0 #1172
2026/04/25-09:19:41.245909 7f57977fe6c0 Level-0 table #1177: started
2026/04/25-09:19:41.245941 7f57977fe6c0 Level-0 table #1177: 0 bytes OK
2026/04/25-09:19:41.252023 7f57977fe6c0 Delete type=0 #1175
2026/04/25-09:19:41.252145 7f57977fe6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
+7 -14
View File
@@ -1,14 +1,7 @@
2026/04/11-21:19:06.264443 7ff3bf3fe6c0 Recovering log #1130
2026/04/11-21:19:06.275289 7ff3bf3fe6c0 Delete type=3 #1128
2026/04/11-21:19:06.275358 7ff3bf3fe6c0 Delete type=0 #1130
2026/04/11-21:27:57.082652 7ff3bdbfb6c0 Level-0 table #1136: started
2026/04/11-21:27:57.086593 7ff3bdbfb6c0 Level-0 table #1136: 2472 bytes OK
2026/04/11-21:27:57.092696 7ff3bdbfb6c0 Delete type=0 #1134
2026/04/11-21:27:57.111697 7ff3bdbfb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at '!journal.pages!8ihDiCxC47fcdKVA.MOWru5Dbvs4iozXm' @ 325 : 1
2026/04/11-21:27:57.111705 7ff3bdbfb6c0 Compacting 1@0 + 1@1 files
2026/04/11-21:27:57.115555 7ff3bdbfb6c0 Generated table #1137@0: 23 keys, 27230 bytes
2026/04/11-21:27:57.115568 7ff3bdbfb6c0 Compacted 1@0 + 1@1 files => 27230 bytes
2026/04/11-21:27:57.121399 7ff3bdbfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/11-21:27:57.121501 7ff3bdbfb6c0 Delete type=2 #1132
2026/04/11-21:27:57.121625 7ff3bdbfb6c0 Delete type=2 #1136
2026/04/11-21:27:57.121723 7ff3bdbfb6c0 Manual compaction at level-0 from '!journal.pages!8ihDiCxC47fcdKVA.MOWru5Dbvs4iozXm' @ 325 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.625593 7f421a7fc6c0 Recovering log #1168
2026/04/18-12:41:58.643479 7f421a7fc6c0 Delete type=3 #1166
2026/04/18-12:41:58.643667 7f421a7fc6c0 Delete type=0 #1168
2026/04/18-12:51:29.111368 7f4219ffb6c0 Level-0 table #1173: started
2026/04/18-12:51:29.111416 7f4219ffb6c0 Level-0 table #1173: 0 bytes OK
2026/04/18-12:51:29.117812 7f4219ffb6c0 Delete type=0 #1171
2026/04/18-12:51:29.125558 7f4219ffb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001039
MANIFEST-001075
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.708004 7ff3be3fc6c0 Recovering log #1037
2026/04/11-21:28:04.718300 7ff3be3fc6c0 Delete type=3 #1035
2026/04/11-21:28:04.718366 7ff3be3fc6c0 Delete type=0 #1037
2026/04/11-21:28:49.305595 7ff3bdbfb6c0 Level-0 table #1042: started
2026/04/11-21:28:49.305624 7ff3bdbfb6c0 Level-0 table #1042: 0 bytes OK
2026/04/11-21:28:49.334673 7ff3bdbfb6c0 Delete type=0 #1040
2026/04/11-21:28:49.456420 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.518994 7f57a57ee6c0 Recovering log #1073
2026/04/25-09:10:23.543453 7f57a57ee6c0 Delete type=3 #1071
2026/04/25-09:10:23.543521 7f57a57ee6c0 Delete type=0 #1073
2026/04/25-09:19:41.232702 7f57977fe6c0 Level-0 table #1078: started
2026/04/25-09:19:41.232726 7f57977fe6c0 Level-0 table #1078: 0 bytes OK
2026/04/25-09:19:41.238815 7f57977fe6c0 Delete type=0 #1076
2026/04/25-09:19:41.252124 7f57977fe6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.240951 7ff3be3fc6c0 Recovering log #1033
2026/04/11-21:19:06.250426 7ff3be3fc6c0 Delete type=3 #1031
2026/04/11-21:19:06.250488 7ff3be3fc6c0 Delete type=0 #1033
2026/04/11-21:27:57.098718 7ff3bdbfb6c0 Level-0 table #1038: started
2026/04/11-21:27:57.098740 7ff3bdbfb6c0 Level-0 table #1038: 0 bytes OK
2026/04/11-21:27:57.104599 7ff3bdbfb6c0 Delete type=0 #1036
2026/04/11-21:27:57.121701 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.594299 7f421a7fc6c0 Recovering log #1069
2026/04/18-12:41:58.606998 7f421a7fc6c0 Delete type=3 #1067
2026/04/18-12:41:58.607187 7f421a7fc6c0 Delete type=0 #1069
2026/04/18-12:51:29.097029 7f4219ffb6c0 Level-0 table #1074: started
2026/04/18-12:51:29.097052 7f4219ffb6c0 Level-0 table #1074: 0 bytes OK
2026/04/18-12:51:29.104587 7f4219ffb6c0 Delete type=0 #1072
2026/04/18-12:51:29.125521 7f4219ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001133
MANIFEST-001169
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.608888 7ff3be3fc6c0 Recovering log #1131
2026/04/11-21:28:04.618597 7ff3be3fc6c0 Delete type=3 #1129
2026/04/11-21:28:04.618657 7ff3be3fc6c0 Delete type=0 #1131
2026/04/11-21:28:49.095706 7ff3bdbfb6c0 Level-0 table #1136: started
2026/04/11-21:28:49.095741 7ff3bdbfb6c0 Level-0 table #1136: 0 bytes OK
2026/04/11-21:28:49.132472 7ff3bdbfb6c0 Delete type=0 #1134
2026/04/11-21:28:49.170383 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.415308 7f5797fff6c0 Recovering log #1167
2026/04/25-09:10:23.425635 7f5797fff6c0 Delete type=3 #1165
2026/04/25-09:10:23.425689 7f5797fff6c0 Delete type=0 #1167
2026/04/25-09:19:41.181575 7f57977fe6c0 Level-0 table #1172: started
2026/04/25-09:19:41.181598 7f57977fe6c0 Level-0 table #1172: 0 bytes OK
2026/04/25-09:19:41.187419 7f57977fe6c0 Delete type=0 #1170
2026/04/25-09:19:41.200426 7f57977fe6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.144409 7ff3be3fc6c0 Recovering log #1127
2026/04/11-21:19:06.153957 7ff3be3fc6c0 Delete type=3 #1125
2026/04/11-21:19:06.154021 7ff3be3fc6c0 Delete type=0 #1127
2026/04/11-21:27:57.045260 7ff3bdbfb6c0 Level-0 table #1132: started
2026/04/11-21:27:57.045286 7ff3bdbfb6c0 Level-0 table #1132: 0 bytes OK
2026/04/11-21:27:57.051070 7ff3bdbfb6c0 Delete type=0 #1130
2026/04/11-21:27:57.057054 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.467876 7f421a7fc6c0 Recovering log #1163
2026/04/18-12:41:58.480087 7f421a7fc6c0 Delete type=3 #1161
2026/04/18-12:41:58.480227 7f421a7fc6c0 Delete type=0 #1163
2026/04/18-12:51:29.064204 7f4219ffb6c0 Level-0 table #1168: started
2026/04/18-12:51:29.064237 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
2026/04/18-12:51:29.070331 7f4219ffb6c0 Delete type=0 #1166
2026/04/18-12:51:29.070529 7f4219ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132
MANIFEST-001168
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.620767 7ff3bfbff6c0 Recovering log #1130
2026/04/11-21:28:04.630558 7ff3bfbff6c0 Delete type=3 #1128
2026/04/11-21:28:04.630621 7ff3bfbff6c0 Delete type=0 #1130
2026/04/11-21:28:49.058278 7ff3bdbfb6c0 Level-0 table #1135: started
2026/04/11-21:28:49.058305 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK
2026/04/11-21:28:49.095507 7ff3bdbfb6c0 Delete type=0 #1133
2026/04/11-21:28:49.170373 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.428677 7f57a5fef6c0 Recovering log #1166
2026/04/25-09:10:23.439670 7f57a5fef6c0 Delete type=3 #1164
2026/04/25-09:10:23.439740 7f57a5fef6c0 Delete type=0 #1166
2026/04/25-09:19:41.194202 7f57977fe6c0 Level-0 table #1171: started
2026/04/25-09:19:41.194230 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
2026/04/25-09:19:41.200311 7f57977fe6c0 Delete type=0 #1169
2026/04/25-09:19:41.200444 7f57977fe6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.155820 7ff3bfbff6c0 Recovering log #1126
2026/04/11-21:19:06.166134 7ff3bfbff6c0 Delete type=3 #1124
2026/04/11-21:19:06.166197 7ff3bfbff6c0 Delete type=0 #1126
2026/04/11-21:27:57.031682 7ff3bdbfb6c0 Level-0 table #1131: started
2026/04/11-21:27:57.031756 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK
2026/04/11-21:27:57.038391 7ff3bdbfb6c0 Delete type=0 #1129
2026/04/11-21:27:57.057035 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.484621 7f421b7fe6c0 Recovering log #1162
2026/04/18-12:41:58.495420 7f421b7fe6c0 Delete type=3 #1160
2026/04/18-12:41:58.495553 7f421b7fe6c0 Delete type=0 #1162
2026/04/18-12:51:29.050477 7f4219ffb6c0 Level-0 table #1167: started
2026/04/18-12:51:29.050497 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
2026/04/18-12:51:29.057500 7f4219ffb6c0 Delete type=0 #1165
2026/04/18-12:51:29.070504 7f4219ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132
MANIFEST-001168
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.644730 7ff3bfbff6c0 Recovering log #1130
2026/04/11-21:28:04.655618 7ff3bfbff6c0 Delete type=3 #1128
2026/04/11-21:28:04.655815 7ff3bfbff6c0 Delete type=0 #1130
2026/04/11-21:28:49.132705 7ff3bdbfb6c0 Level-0 table #1135: started
2026/04/11-21:28:49.132747 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK
2026/04/11-21:28:49.170220 7ff3bdbfb6c0 Delete type=0 #1133
2026/04/11-21:28:49.170391 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.454061 7f57a57ee6c0 Recovering log #1166
2026/04/25-09:10:23.463910 7f57a57ee6c0 Delete type=3 #1164
2026/04/25-09:10:23.463965 7f57a57ee6c0 Delete type=0 #1166
2026/04/25-09:19:41.187521 7f57977fe6c0 Level-0 table #1171: started
2026/04/25-09:19:41.187543 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
2026/04/25-09:19:41.194114 7f57977fe6c0 Delete type=0 #1169
2026/04/25-09:19:41.200436 7f57977fe6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.179631 7ff3bebfd6c0 Recovering log #1126
2026/04/11-21:19:06.189451 7ff3bebfd6c0 Delete type=3 #1124
2026/04/11-21:19:06.189498 7ff3bebfd6c0 Delete type=0 #1126
2026/04/11-21:27:57.051143 7ff3bdbfb6c0 Level-0 table #1131: started
2026/04/11-21:27:57.051164 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK
2026/04/11-21:27:57.056960 7ff3bdbfb6c0 Delete type=0 #1129
2026/04/11-21:27:57.057062 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.515857 7f421affd6c0 Recovering log #1162
2026/04/18-12:41:58.526774 7f421affd6c0 Delete type=3 #1160
2026/04/18-12:41:58.526909 7f421affd6c0 Delete type=0 #1162
2026/04/18-12:51:29.043791 7f4219ffb6c0 Level-0 table #1167: started
2026/04/18-12:51:29.043833 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
2026/04/18-12:51:29.050399 7f4219ffb6c0 Delete type=0 #1165
2026/04/18-12:51:29.070487 7f4219ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001130
MANIFEST-001166
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.822069 7ff3bebfd6c0 Recovering log #1128
2026/04/11-21:28:04.831801 7ff3bebfd6c0 Delete type=3 #1126
2026/04/11-21:28:04.831849 7ff3bebfd6c0 Delete type=0 #1128
2026/04/11-21:28:49.681591 7ff3bdbfb6c0 Level-0 table #1133: started
2026/04/11-21:28:49.681658 7ff3bdbfb6c0 Level-0 table #1133: 0 bytes OK
2026/04/11-21:28:49.718700 7ff3bdbfb6c0 Delete type=0 #1131
2026/04/11-21:28:49.761295 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.648173 7f57a4fed6c0 Recovering log #1164
2026/04/25-09:10:23.657827 7f57a4fed6c0 Delete type=3 #1162
2026/04/25-09:10:23.657874 7f57a4fed6c0 Delete type=0 #1164
2026/04/25-09:19:41.285408 7f57977fe6c0 Level-0 table #1169: started
2026/04/25-09:19:41.285432 7f57977fe6c0 Level-0 table #1169: 0 bytes OK
2026/04/25-09:19:41.291927 7f57977fe6c0 Delete type=0 #1167
2026/04/25-09:19:41.306082 7f57977fe6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.351355 7ff3bfbff6c0 Recovering log #1124
2026/04/11-21:19:06.361887 7ff3bfbff6c0 Delete type=3 #1122
2026/04/11-21:19:06.361938 7ff3bfbff6c0 Delete type=0 #1124
2026/04/11-21:27:57.154739 7ff3bdbfb6c0 Level-0 table #1129: started
2026/04/11-21:27:57.154770 7ff3bdbfb6c0 Level-0 table #1129: 0 bytes OK
2026/04/11-21:27:57.160975 7ff3bdbfb6c0 Delete type=0 #1127
2026/04/11-21:27:57.175182 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.742695 7f421affd6c0 Recovering log #1160
2026/04/18-12:41:58.754264 7f421affd6c0 Delete type=3 #1158
2026/04/18-12:41:58.754458 7f421affd6c0 Delete type=0 #1160
2026/04/18-12:51:29.159760 7f4219ffb6c0 Level-0 table #1165: started
2026/04/18-12:51:29.159794 7f4219ffb6c0 Level-0 table #1165: 0 bytes OK
2026/04/18-12:51:29.166069 7f4219ffb6c0 Delete type=0 #1163
2026/04/18-12:51:29.180793 7f4219ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001133
MANIFEST-001169
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.683176 7ff3bebfd6c0 Recovering log #1131
2026/04/11-21:28:04.693337 7ff3bebfd6c0 Delete type=3 #1129
2026/04/11-21:28:04.693387 7ff3bebfd6c0 Delete type=0 #1131
2026/04/11-21:28:49.233539 7ff3bdbfb6c0 Level-0 table #1136: started
2026/04/11-21:28:49.233570 7ff3bdbfb6c0 Level-0 table #1136: 0 bytes OK
2026/04/11-21:28:49.271356 7ff3bdbfb6c0 Delete type=0 #1134
2026/04/11-21:28:49.305506 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.492596 7f5797fff6c0 Recovering log #1167
2026/04/25-09:10:23.503234 7f5797fff6c0 Delete type=3 #1165
2026/04/25-09:10:23.503321 7f5797fff6c0 Delete type=0 #1167
2026/04/25-09:19:41.200546 7f57977fe6c0 Level-0 table #1172: started
2026/04/25-09:19:41.200584 7f57977fe6c0 Level-0 table #1172: 0 bytes OK
2026/04/25-09:19:41.206667 7f57977fe6c0 Delete type=0 #1170
2026/04/25-09:19:41.226423 7f57977fe6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.215905 7ff3be3fc6c0 Recovering log #1127
2026/04/11-21:19:06.225729 7ff3be3fc6c0 Delete type=3 #1125
2026/04/11-21:19:06.225801 7ff3be3fc6c0 Delete type=0 #1127
2026/04/11-21:27:57.070299 7ff3bdbfb6c0 Level-0 table #1132: started
2026/04/11-21:27:57.070342 7ff3bdbfb6c0 Level-0 table #1132: 0 bytes OK
2026/04/11-21:27:57.076462 7ff3bdbfb6c0 Delete type=0 #1130
2026/04/11-21:27:57.082540 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.562774 7f421a7fc6c0 Recovering log #1163
2026/04/18-12:41:58.573652 7f421a7fc6c0 Delete type=3 #1161
2026/04/18-12:41:58.573800 7f421a7fc6c0 Delete type=0 #1163
2026/04/18-12:51:29.084486 7f4219ffb6c0 Level-0 table #1168: started
2026/04/18-12:51:29.084510 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
2026/04/18-12:51:29.090608 7f4219ffb6c0 Delete type=0 #1166
2026/04/18-12:51:29.096960 7f4219ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132
MANIFEST-001168
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.771459 7ff3bebfd6c0 Recovering log #1130
2026/04/11-21:28:04.782419 7ff3bebfd6c0 Delete type=3 #1128
2026/04/11-21:28:04.782481 7ff3bebfd6c0 Delete type=0 #1130
2026/04/11-21:28:49.490812 7ff3bdbfb6c0 Level-0 table #1135: started
2026/04/11-21:28:49.490847 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK
2026/04/11-21:28:49.523118 7ff3bdbfb6c0 Delete type=0 #1133
2026/04/11-21:28:49.606517 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.598956 7f57a4fed6c0 Recovering log #1166
2026/04/25-09:10:23.608303 7f57a4fed6c0 Delete type=3 #1164
2026/04/25-09:10:23.608370 7f57a4fed6c0 Delete type=0 #1166
2026/04/25-09:19:41.258795 7f57977fe6c0 Level-0 table #1171: started
2026/04/25-09:19:41.258824 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
2026/04/25-09:19:41.265729 7f57977fe6c0 Delete type=0 #1169
2026/04/25-09:19:41.279104 7f57977fe6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.302307 7ff3bfbff6c0 Recovering log #1126
2026/04/11-21:19:06.312721 7ff3bfbff6c0 Delete type=3 #1124
2026/04/11-21:19:06.312775 7ff3bfbff6c0 Delete type=0 #1126
2026/04/11-21:27:57.121860 7ff3bdbfb6c0 Level-0 table #1131: started
2026/04/11-21:27:57.121898 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK
2026/04/11-21:27:57.127875 7ff3bdbfb6c0 Delete type=0 #1129
2026/04/11-21:27:57.147924 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.679668 7f421affd6c0 Recovering log #1162
2026/04/18-12:41:58.690539 7f421affd6c0 Delete type=3 #1160
2026/04/18-12:41:58.690711 7f421affd6c0 Delete type=0 #1162
2026/04/18-12:51:29.146181 7f4219ffb6c0 Level-0 table #1167: started
2026/04/18-12:51:29.146206 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
2026/04/18-12:51:29.152607 7f4219ffb6c0 Delete type=0 #1165
2026/04/18-12:51:29.152803 7f4219ffb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000615
MANIFEST-000651
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.784582 7ff3be3fc6c0 Recovering log #613
2026/04/11-21:28:04.794288 7ff3be3fc6c0 Delete type=3 #611
2026/04/11-21:28:04.794347 7ff3be3fc6c0 Delete type=0 #613
2026/04/11-21:28:49.523267 7ff3bdbfb6c0 Level-0 table #618: started
2026/04/11-21:28:49.523294 7ff3bdbfb6c0 Level-0 table #618: 0 bytes OK
2026/04/11-21:28:49.563196 7ff3bdbfb6c0 Delete type=0 #616
2026/04/11-21:28:49.606526 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.610604 7f57a5fef6c0 Recovering log #649
2026/04/25-09:10:23.620511 7f57a5fef6c0 Delete type=3 #647
2026/04/25-09:10:23.620579 7f57a5fef6c0 Delete type=0 #649
2026/04/25-09:19:41.265834 7f57977fe6c0 Level-0 table #654: started
2026/04/25-09:19:41.265861 7f57977fe6c0 Level-0 table #654: 0 bytes OK
2026/04/25-09:19:41.271834 7f57977fe6c0 Delete type=0 #652
2026/04/25-09:19:41.279116 7f57977fe6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.314651 7ff3bebfd6c0 Recovering log #609
2026/04/11-21:19:06.324515 7ff3bebfd6c0 Delete type=3 #607
2026/04/11-21:19:06.324590 7ff3bebfd6c0 Delete type=0 #609
2026/04/11-21:27:57.135220 7ff3bdbfb6c0 Level-0 table #614: started
2026/04/11-21:27:57.135248 7ff3bdbfb6c0 Level-0 table #614: 0 bytes OK
2026/04/11-21:27:57.141172 7ff3bdbfb6c0 Delete type=0 #612
2026/04/11-21:27:57.147942 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.694405 7f421b7fe6c0 Recovering log #645
2026/04/18-12:41:58.706703 7f421b7fe6c0 Delete type=3 #643
2026/04/18-12:41:58.706857 7f421b7fe6c0 Delete type=0 #645
2026/04/18-12:51:29.125711 7f4219ffb6c0 Level-0 table #650: started
2026/04/18-12:51:29.125752 7f4219ffb6c0 Level-0 table #650: 0 bytes OK
2026/04/18-12:51:29.132047 7f4219ffb6c0 Delete type=0 #648
2026/04/18-12:51:29.152761 7f4219ffb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001133
MANIFEST-001169
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.632656 7ff3be3fc6c0 Recovering log #1131
2026/04/11-21:28:04.642627 7ff3be3fc6c0 Delete type=3 #1129
2026/04/11-21:28:04.642693 7ff3be3fc6c0 Delete type=0 #1131
2026/04/11-21:28:49.022252 7ff3bdbfb6c0 Level-0 table #1136: started
2026/04/11-21:28:49.022296 7ff3bdbfb6c0 Level-0 table #1136: 0 bytes OK
2026/04/11-21:28:49.058141 7ff3bdbfb6c0 Delete type=0 #1134
2026/04/11-21:28:49.170360 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.441804 7f57a4fed6c0 Recovering log #1167
2026/04/25-09:10:23.451168 7f57a4fed6c0 Delete type=3 #1165
2026/04/25-09:10:23.451240 7f57a4fed6c0 Delete type=0 #1167
2026/04/25-09:19:41.175149 7f57977fe6c0 Level-0 table #1172: started
2026/04/25-09:19:41.175236 7f57977fe6c0 Level-0 table #1172: 0 bytes OK
2026/04/25-09:19:41.181477 7f57977fe6c0 Delete type=0 #1170
2026/04/25-09:19:41.200413 7f57977fe6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.167811 7ff3bf3fe6c0 Recovering log #1127
2026/04/11-21:19:06.177763 7ff3bf3fe6c0 Delete type=3 #1125
2026/04/11-21:19:06.177819 7ff3bf3fe6c0 Delete type=0 #1127
2026/04/11-21:27:57.038506 7ff3bdbfb6c0 Level-0 table #1132: started
2026/04/11-21:27:57.038536 7ff3bdbfb6c0 Level-0 table #1132: 0 bytes OK
2026/04/11-21:27:57.045178 7ff3bdbfb6c0 Delete type=0 #1130
2026/04/11-21:27:57.057045 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.499510 7f421bfff6c0 Recovering log #1163
2026/04/18-12:41:58.511396 7f421bfff6c0 Delete type=3 #1161
2026/04/18-12:41:58.511530 7f421bfff6c0 Delete type=0 #1163
2026/04/18-12:51:29.057755 7f4219ffb6c0 Level-0 table #1168: started
2026/04/18-12:51:29.057790 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
2026/04/18-12:51:29.064101 7f4219ffb6c0 Delete type=0 #1166
2026/04/18-12:51:29.070517 7f4219ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132
MANIFEST-001168
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.745462 7ff3bfbff6c0 Recovering log #1130
2026/04/11-21:28:04.755975 7ff3bfbff6c0 Delete type=3 #1128
2026/04/11-21:28:04.756037 7ff3bfbff6c0 Delete type=0 #1130
2026/04/11-21:28:49.413786 7ff3bdbfb6c0 Level-0 table #1135: started
2026/04/11-21:28:49.413815 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK
2026/04/11-21:28:49.456301 7ff3bdbfb6c0 Delete type=0 #1133
2026/04/11-21:28:49.456449 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.572412 7f5797fff6c0 Recovering log #1166
2026/04/25-09:10:23.582728 7f5797fff6c0 Delete type=3 #1164
2026/04/25-09:10:23.582796 7f5797fff6c0 Delete type=0 #1166
2026/04/25-09:19:41.238892 7f57977fe6c0 Level-0 table #1171: started
2026/04/25-09:19:41.238913 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
2026/04/25-09:19:41.245781 7f57977fe6c0 Delete type=0 #1169
2026/04/25-09:19:41.252135 7f57977fe6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.277894 7ff3bfbff6c0 Recovering log #1126
2026/04/11-21:19:06.287521 7ff3bfbff6c0 Delete type=3 #1124
2026/04/11-21:19:06.287570 7ff3bfbff6c0 Delete type=0 #1126
2026/04/11-21:27:57.092798 7ff3bdbfb6c0 Level-0 table #1131: started
2026/04/11-21:27:57.092823 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK
2026/04/11-21:27:57.098645 7ff3bdbfb6c0 Delete type=0 #1129
2026/04/11-21:27:57.121686 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.647922 7f421affd6c0 Recovering log #1162
2026/04/18-12:41:58.660294 7f421affd6c0 Delete type=3 #1160
2026/04/18-12:41:58.660443 7f421affd6c0 Delete type=0 #1162
2026/04/18-12:51:29.117921 7f4219ffb6c0 Level-0 table #1167: started
2026/04/18-12:51:29.117948 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
2026/04/18-12:51:29.125231 7f4219ffb6c0 Delete type=0 #1165
2026/04/18-12:51:29.125582 7f4219ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132
MANIFEST-001168
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.809086 7ff3be3fc6c0 Recovering log #1130
2026/04/11-21:28:04.819927 7ff3be3fc6c0 Delete type=3 #1128
2026/04/11-21:28:04.819971 7ff3be3fc6c0 Delete type=0 #1130
2026/04/11-21:28:49.606597 7ff3bdbfb6c0 Level-0 table #1135: started
2026/04/11-21:28:49.606621 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK
2026/04/11-21:28:49.638965 7ff3bdbfb6c0 Delete type=0 #1133
2026/04/11-21:28:49.761270 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.636027 7f57a5fef6c0 Recovering log #1166
2026/04/25-09:10:23.645482 7f57a5fef6c0 Delete type=3 #1164
2026/04/25-09:10:23.645550 7f57a5fef6c0 Delete type=0 #1166
2026/04/25-09:19:41.279228 7f57977fe6c0 Level-0 table #1171: started
2026/04/25-09:19:41.279313 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
2026/04/25-09:19:41.285308 7f57977fe6c0 Delete type=0 #1169
2026/04/25-09:19:41.306067 7f57977fe6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.338895 7ff3bebfd6c0 Recovering log #1126
2026/04/11-21:19:06.348606 7ff3bebfd6c0 Delete type=3 #1124
2026/04/11-21:19:06.348656 7ff3bebfd6c0 Delete type=0 #1126
2026/04/11-21:27:57.148044 7ff3bdbfb6c0 Level-0 table #1131: started
2026/04/11-21:27:57.148098 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK
2026/04/11-21:27:57.154566 7ff3bdbfb6c0 Delete type=0 #1129
2026/04/11-21:27:57.175161 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.726985 7f421b7fe6c0 Recovering log #1162
2026/04/18-12:41:58.738061 7f421b7fe6c0 Delete type=3 #1160
2026/04/18-12:41:58.738230 7f421b7fe6c0 Delete type=0 #1162
2026/04/18-12:51:29.152892 7f4219ffb6c0 Level-0 table #1167: started
2026/04/18-12:51:29.152928 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
2026/04/18-12:51:29.159552 7f4219ffb6c0 Delete type=0 #1165
2026/04/18-12:51:29.180766 7f4219ffb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132
MANIFEST-001168
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.658118 7ff3bebfd6c0 Recovering log #1130
2026/04/11-21:28:04.667882 7ff3bebfd6c0 Delete type=3 #1128
2026/04/11-21:28:04.667925 7ff3bebfd6c0 Delete type=0 #1130
2026/04/11-21:28:49.170503 7ff3bdbfb6c0 Level-0 table #1135: started
2026/04/11-21:28:49.170531 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK
2026/04/11-21:28:49.204365 7ff3bdbfb6c0 Delete type=0 #1133
2026/04/11-21:28:49.305476 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.467830 7f57a4fed6c0 Recovering log #1166
2026/04/25-09:10:23.477695 7f57a4fed6c0 Delete type=3 #1164
2026/04/25-09:10:23.477770 7f57a4fed6c0 Delete type=0 #1166
2026/04/25-09:19:41.213300 7f57977fe6c0 Level-0 table #1171: started
2026/04/25-09:19:41.213338 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
2026/04/25-09:19:41.220151 7f57977fe6c0 Delete type=0 #1169
2026/04/25-09:19:41.226449 7f57977fe6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.192001 7ff3be3fc6c0 Recovering log #1126
2026/04/11-21:19:06.202555 7ff3be3fc6c0 Delete type=3 #1124
2026/04/11-21:19:06.202618 7ff3be3fc6c0 Delete type=0 #1126
2026/04/11-21:27:57.076584 7ff3bdbfb6c0 Level-0 table #1131: started
2026/04/11-21:27:57.076612 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK
2026/04/11-21:27:57.082443 7ff3bdbfb6c0 Delete type=0 #1129
2026/04/11-21:27:57.082548 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.530908 7f421bfff6c0 Recovering log #1162
2026/04/18-12:41:58.542409 7f421bfff6c0 Delete type=3 #1160
2026/04/18-12:41:58.542546 7f421bfff6c0 Delete type=0 #1162
2026/04/18-12:51:29.070666 7f4219ffb6c0 Level-0 table #1167: started
2026/04/18-12:51:29.070696 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
2026/04/18-12:51:29.077102 7f4219ffb6c0 Delete type=0 #1165
2026/04/18-12:51:29.096941 7f4219ffb6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132
MANIFEST-001168
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.796380 7ff3bebfd6c0 Recovering log #1130
2026/04/11-21:28:04.806701 7ff3bebfd6c0 Delete type=3 #1128
2026/04/11-21:28:04.806762 7ff3bebfd6c0 Delete type=0 #1130
2026/04/11-21:28:49.563325 7ff3bdbfb6c0 Level-0 table #1135: started
2026/04/11-21:28:49.563353 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK
2026/04/11-21:28:49.606393 7ff3bdbfb6c0 Delete type=0 #1133
2026/04/11-21:28:49.606534 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.622948 7f57a4fed6c0 Recovering log #1166
2026/04/25-09:10:23.633625 7f57a4fed6c0 Delete type=3 #1164
2026/04/25-09:10:23.633678 7f57a4fed6c0 Delete type=0 #1166
2026/04/25-09:19:41.271934 7f57977fe6c0 Level-0 table #1171: started
2026/04/25-09:19:41.271961 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
2026/04/25-09:19:41.278981 7f57977fe6c0 Delete type=0 #1169
2026/04/25-09:19:41.279126 7f57977fe6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.326477 7ff3bfbff6c0 Recovering log #1126
2026/04/11-21:19:06.336422 7ff3bfbff6c0 Delete type=3 #1124
2026/04/11-21:19:06.336467 7ff3bfbff6c0 Delete type=0 #1126
2026/04/11-21:27:57.127960 7ff3bdbfb6c0 Level-0 table #1131: started
2026/04/11-21:27:57.127981 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK
2026/04/11-21:27:57.135135 7ff3bdbfb6c0 Delete type=0 #1129
2026/04/11-21:27:57.147934 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.710807 7f421affd6c0 Recovering log #1162
2026/04/18-12:41:58.722230 7f421affd6c0 Delete type=3 #1160
2026/04/18-12:41:58.722369 7f421affd6c0 Delete type=0 #1162
2026/04/18-12:51:29.132185 7f4219ffb6c0 Level-0 table #1167: started
2026/04/18-12:51:29.132228 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
2026/04/18-12:51:29.139472 7f4219ffb6c0 Delete type=0 #1165
2026/04/18-12:51:29.152778 7f4219ffb6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132
MANIFEST-001168
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.670103 7ff3bfbff6c0 Recovering log #1130
2026/04/11-21:28:04.680842 7ff3bfbff6c0 Delete type=3 #1128
2026/04/11-21:28:04.680904 7ff3bfbff6c0 Delete type=0 #1130
2026/04/11-21:28:49.204488 7ff3bdbfb6c0 Level-0 table #1135: started
2026/04/11-21:28:49.204513 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK
2026/04/11-21:28:49.233418 7ff3bdbfb6c0 Delete type=0 #1133
2026/04/11-21:28:49.305493 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.480838 7f57a5fef6c0 Recovering log #1166
2026/04/25-09:10:23.490276 7f57a5fef6c0 Delete type=3 #1164
2026/04/25-09:10:23.490336 7f57a5fef6c0 Delete type=0 #1166
2026/04/25-09:19:41.220255 7f57977fe6c0 Level-0 table #1171: started
2026/04/25-09:19:41.220295 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
2026/04/25-09:19:41.226268 7f57977fe6c0 Delete type=0 #1169
2026/04/25-09:19:41.226459 7f57977fe6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.204659 7ff3bebfd6c0 Recovering log #1126
2026/04/11-21:19:06.214171 7ff3bebfd6c0 Delete type=3 #1124
2026/04/11-21:19:06.214244 7ff3bebfd6c0 Delete type=0 #1126
2026/04/11-21:27:57.064048 7ff3bdbfb6c0 Level-0 table #1131: started
2026/04/11-21:27:57.064069 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK
2026/04/11-21:27:57.070107 7ff3bdbfb6c0 Delete type=0 #1129
2026/04/11-21:27:57.082531 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.546317 7f421b7fe6c0 Recovering log #1162
2026/04/18-12:41:58.558957 7f421b7fe6c0 Delete type=3 #1160
2026/04/18-12:41:58.559092 7f421b7fe6c0 Delete type=0 #1162
2026/04/18-12:51:29.077231 7f4219ffb6c0 Level-0 table #1167: started
2026/04/18-12:51:29.077261 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
2026/04/18-12:51:29.084417 7f4219ffb6c0 Delete type=0 #1165
2026/04/18-12:51:29.096952 7f4219ffb6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132
MANIFEST-001168
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.758108 7ff3be3fc6c0 Recovering log #1130
2026/04/11-21:28:04.768948 7ff3be3fc6c0 Delete type=3 #1128
2026/04/11-21:28:04.768992 7ff3be3fc6c0 Delete type=0 #1130
2026/04/11-21:28:49.456506 7ff3bdbfb6c0 Level-0 table #1135: started
2026/04/11-21:28:49.456525 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK
2026/04/11-21:28:49.490661 7ff3bdbfb6c0 Delete type=0 #1133
2026/04/11-21:28:49.606505 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.585176 7f57a57ee6c0 Recovering log #1166
2026/04/25-09:10:23.595981 7f57a57ee6c0 Delete type=3 #1164
2026/04/25-09:10:23.596572 7f57a57ee6c0 Delete type=0 #1166
2026/04/25-09:19:41.252217 7f57977fe6c0 Level-0 table #1171: started
2026/04/25-09:19:41.252257 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
2026/04/25-09:19:41.258650 7f57977fe6c0 Delete type=0 #1169
2026/04/25-09:19:41.279090 7f57977fe6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.289842 7ff3bebfd6c0 Recovering log #1126
2026/04/11-21:19:06.300286 7ff3bebfd6c0 Delete type=3 #1124
2026/04/11-21:19:06.300352 7ff3bebfd6c0 Delete type=0 #1126
2026/04/11-21:27:57.141270 7ff3bdbfb6c0 Level-0 table #1131: started
2026/04/11-21:27:57.141301 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK
2026/04/11-21:27:57.147840 7ff3bdbfb6c0 Delete type=0 #1129
2026/04/11-21:27:57.147950 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.664345 7f421bfff6c0 Recovering log #1162
2026/04/18-12:41:58.675953 7f421bfff6c0 Delete type=3 #1160
2026/04/18-12:41:58.676111 7f421bfff6c0 Delete type=0 #1162
2026/04/18-12:51:29.139619 7f4219ffb6c0 Level-0 table #1167: started
2026/04/18-12:51:29.139649 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
2026/04/18-12:51:29.146054 7f4219ffb6c0 Delete type=0 #1165
2026/04/18-12:51:29.152789 7f4219ffb6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001039
MANIFEST-001075
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.720482 7ff3bfbff6c0 Recovering log #1037
2026/04/11-21:28:04.731458 7ff3bfbff6c0 Delete type=3 #1035
2026/04/11-21:28:04.731534 7ff3bfbff6c0 Delete type=0 #1037
2026/04/11-21:28:49.334808 7ff3bdbfb6c0 Level-0 table #1042: started
2026/04/11-21:28:49.334836 7ff3bdbfb6c0 Level-0 table #1042: 0 bytes OK
2026/04/11-21:28:49.377213 7ff3bdbfb6c0 Delete type=0 #1040
2026/04/11-21:28:49.456431 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.546215 7f57a5fef6c0 Recovering log #1073
2026/04/25-09:10:23.557262 7f57a5fef6c0 Delete type=3 #1071
2026/04/25-09:10:23.557345 7f57a5fef6c0 Delete type=0 #1073
2026/04/25-09:19:41.226568 7f57977fe6c0 Level-0 table #1078: started
2026/04/25-09:19:41.226604 7f57977fe6c0 Level-0 table #1078: 0 bytes OK
2026/04/25-09:19:41.232619 7f57977fe6c0 Delete type=0 #1076
2026/04/25-09:19:41.252112 7f57977fe6c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.252326 7ff3bebfd6c0 Recovering log #1033
2026/04/11-21:19:06.262335 7ff3bebfd6c0 Delete type=3 #1031
2026/04/11-21:19:06.262392 7ff3bebfd6c0 Delete type=0 #1033
2026/04/11-21:27:57.104677 7ff3bdbfb6c0 Level-0 table #1038: started
2026/04/11-21:27:57.104705 7ff3bdbfb6c0 Level-0 table #1038: 0 bytes OK
2026/04/11-21:27:57.111604 7ff3bdbfb6c0 Delete type=0 #1036
2026/04/11-21:27:57.121713 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.610634 7f421b7fe6c0 Recovering log #1069
2026/04/18-12:41:58.621708 7f421b7fe6c0 Delete type=3 #1067
2026/04/18-12:41:58.621871 7f421b7fe6c0 Delete type=0 #1069
2026/04/18-12:51:29.104782 7f4219ffb6c0 Level-0 table #1074: started
2026/04/18-12:51:29.104826 7f4219ffb6c0 Level-0 table #1074: 0 bytes OK
2026/04/18-12:51:29.111204 7f4219ffb6c0 Delete type=0 #1072
2026/04/18-12:51:29.125542 7f4219ffb6c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001045
MANIFEST-001081
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.695406 7ff3bf3fe6c0 Recovering log #1043
2026/04/11-21:28:04.704891 7ff3bf3fe6c0 Delete type=3 #1041
2026/04/11-21:28:04.705422 7ff3bf3fe6c0 Delete type=0 #1043
2026/04/11-21:28:49.271480 7ff3bdbfb6c0 Level-0 table #1048: started
2026/04/11-21:28:49.271507 7ff3bdbfb6c0 Level-0 table #1048: 0 bytes OK
2026/04/11-21:28:49.305351 7ff3bdbfb6c0 Delete type=0 #1046
2026/04/11-21:28:49.305516 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!2xxMC458KXaAgm3T' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2026/04/25-09:10:23.505591 7f57a5fef6c0 Recovering log #1079
2026/04/25-09:10:23.515495 7f57a5fef6c0 Delete type=3 #1077
2026/04/25-09:10:23.515569 7f57a5fef6c0 Delete type=0 #1079
2026/04/25-09:19:41.206807 7f57977fe6c0 Level-0 table #1084: started
2026/04/25-09:19:41.206861 7f57977fe6c0 Level-0 table #1084: 0 bytes OK
2026/04/25-09:19:41.213141 7f57977fe6c0 Delete type=0 #1082
2026/04/25-09:19:41.226436 7f57977fe6c0 Manual compaction at level-0 from '!items!2xxMC458KXaAgm3T' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.228017 7ff3bebfd6c0 Recovering log #1039
2026/04/11-21:19:06.238516 7ff3bebfd6c0 Delete type=3 #1037
2026/04/11-21:19:06.238582 7ff3bebfd6c0 Delete type=0 #1039
2026/04/11-21:27:57.057230 7ff3bdbfb6c0 Level-0 table #1044: started
2026/04/11-21:27:57.057254 7ff3bdbfb6c0 Level-0 table #1044: 0 bytes OK
2026/04/11-21:27:57.063974 7ff3bdbfb6c0 Delete type=0 #1042
2026/04/11-21:27:57.082518 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!2xxMC458KXaAgm3T' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2026/04/18-12:41:58.577903 7f421affd6c0 Recovering log #1075
2026/04/18-12:41:58.590014 7f421affd6c0 Delete type=3 #1073
2026/04/18-12:41:58.590187 7f421affd6c0 Delete type=0 #1075
2026/04/18-12:51:29.090793 7f4219ffb6c0 Level-0 table #1080: started
2026/04/18-12:51:29.090828 7f4219ffb6c0 Level-0 table #1080: 0 bytes OK
2026/04/18-12:51:29.096878 7f4219ffb6c0 Delete type=0 #1078
2026/04/18-12:51:29.096968 7f4219ffb6c0 Manual compaction at level-0 from '!items!2xxMC458KXaAgm3T' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)