Foundry v13 migration

This commit is contained in:
LeRatierBretonnien 2025-05-02 00:00:24 +02:00
parent ee7f37878f
commit bb3a4fc5f7
186 changed files with 776 additions and 674 deletions

View File

@ -6,7 +6,7 @@
import { YggdrasillUtility } from "./yggdrasill-utility.js";
/* -------------------------------------------- */
export class YggdrasillActorSheet extends ActorSheet {
export class YggdrasillActorSheet extends foundry.appv1.sheets.ActorSheet {
/** @override */
static get defaultOptions() {
@ -64,10 +64,10 @@ export class YggdrasillActorSheet extends ActorSheet {
optionsDMDP: YggdrasillUtility.createDirectSortedOptionList(-10, +10),
optionsBase: YggdrasillUtility.createDirectOptionList(0, 20),
optionsFuror: YggdrasillUtility.createDirectOptionList(0, 15),
tiragerunes: await TextEditor.enrichHTML(this.object.system.tiragesrunes, {async: true}),
description: await TextEditor.enrichHTML(this.object.system.description, {async: true}),
notes: await TextEditor.enrichHTML(this.object.system.notes, {async: true}),
gmnotes: await TextEditor.enrichHTML(this.object.system.biodata.gmnotes, {async: true}),
tiragerunes: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.tiragesrunes, {async: true}),
description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, {async: true}),
notes: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.notes, {async: true}),
gmnotes: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.biodata.gmnotes, {async: true}),
options: this.options,
owner: this.document.isOwner,
editScore: this.options.editScore,

View File

@ -6,7 +6,7 @@
import { YggdrasillUtility } from "./yggdrasill-utility.js";
/* -------------------------------------------- */
export class YggdrasillFigurantSheet extends ActorSheet {
export class YggdrasillFigurantSheet extends foundry.appv1.sheets.ActorSheet {
/** @override */
static get defaultOptions() {
@ -42,8 +42,8 @@ export class YggdrasillFigurantSheet extends ActorSheet {
monnaies: this.actor.getMonnaies(),
optionsAttr: Array.fromRange(41, 1),
optionsBase: YggdrasillUtility.createDirectOptionList(0, 20),
description: await TextEditor.enrichHTML(this.object.system.description, {async: true}),
notes: await TextEditor.enrichHTML(this.object.system.notes, {async: true}),
description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, {async: true}),
notes: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.notes, {async: true}),
options: this.options,
owner: this.document.isOwner,
editScore: this.options.editScore,

View File

@ -4,7 +4,7 @@ import { YggdrasillUtility } from "./yggdrasill-utility.js";
* Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet}
*/
export class YggdrasillItemSheet extends ItemSheet {
export class YggdrasillItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */
static get defaultOptions() {
@ -56,7 +56,7 @@ export class YggdrasillItemSheet extends ItemSheet {
data: foundry.utils.deepClone(this.object.system),
optionsBase: YggdrasillUtility.createDirectOptionList(0, 20),
optionsNiveaux4: Array.fromRange(5, 1),
description: await TextEditor.enrichHTML(this.object.system.description, {async: true}),
description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, {async: true}),
limited: this.object.limited,
options: this.options,
owner: this.document.isOwner,

View File

@ -52,22 +52,16 @@ Hooks.once("init", async function () {
/* -------------------------------------------- */
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("fvtt-yggdrasill", YggdrasillActorSheet, { types: ["personnage"], makeDefault: true });
Actors.registerSheet("fvtt-yggdrasill", YggdrasillFigurantSheet, { types: ["figurant"], makeDefault: false });
Items.unregisterSheet("core", ItemSheet);
Items.registerSheet("fvtt-yggdrasill", YggdrasillItemSheet, { makeDefault: true });
// Init/registers
Hooks.on('renderChatLog', (log, html, data) => {
//YggdrasillUtility.registerChatCallbacks(html);
});
foundry.documents.collections.Actors.unregisterSheet("core", foundry.appv1.sheets.ActorSheet);
foundry.documents.collections.Actors.registerSheet("fvtt-yggdrasill", YggdrasillActorSheet, { types: ["personnage"], makeDefault: true });
foundry.documents.collections.Actors.registerSheet("fvtt-yggdrasill", YggdrasillFigurantSheet, { types: ["figurant"], makeDefault: false });
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
foundry.documents.collections.Items.registerSheet("fvtt-yggdrasill", YggdrasillItemSheet, { makeDefault: true });
});
/* -------------------------------------------- */
function welcomeMessage() {
//ChatUtility.removeMyChatMessageContaining('<div id="welcome-message-sos">');
ChatMessage.create({
user: game.user.id,
whisper: [game.user.id],

View File

@ -11,24 +11,24 @@ export class YggdrasillRoll extends Dialog {
let html
let h = 440;
if ( rollData.mode == "competence") {
html = await renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-competence.html', rollData);
html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-competence.html', rollData);
h = 340;
} else if (rollData.mode == "carac") {
html = await renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-carac.html', rollData);
html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-carac.html', rollData);
h = 320;
} else if (rollData.mode == "attribut") {
html = await renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-attribut.html', rollData);
html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-attribut.html', rollData);
h = 320;
} else if (rollData.mode == "armecc") {
html = await renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-armecc.html', rollData);
html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-armecc.html', rollData);
} else if (rollData.mode == "sejdr") {
html = await renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-sejdr.html', rollData);
html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-sejdr.html', rollData);
} else if (rollData.mode == "rune") {
html = await renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-rune.html', rollData);
html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-rune.html', rollData);
} else if (rollData.mode == "galdr") {
html = await renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-galdr.html', rollData);
html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-galdr.html', rollData);
} else {
html = await renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-armetir.html', rollData);
html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-yggdrasill/templates/roll-dialog-armetir.html', rollData);
}
let options = { classes: ["yggdrasilldialog"], width: 600, height: h, 'z-index': 99999 };
return new YggdrasillRoll(actor, rollData, html, options );

View File

@ -14,7 +14,7 @@ export class YggdrasillUtility {
'systems/fvtt-yggdrasill/templates/actor-sheet.html',
'systems/fvtt-yggdrasill/templates/editor-notes-gm.html'
]
return loadTemplates(templatePaths);
return foundry.applications.handlebars.loadTemplates(templatePaths);
}
/* -------------------------------------------- */
@ -42,14 +42,6 @@ export class YggdrasillUtility {
return options;
}
/* -------------------------------------------- */
static buildListOptions(min, max) {
let options = ""
for (let i = min; i <= max; i++) {
options += `<option value="${i}">${i}</option>`
}
return options;
}
/* -------------------------------------------- */
static buildListOptions(min, max) {
let options = ""
@ -102,7 +94,7 @@ export class YggdrasillUtility {
for (let i=0; i<maxTabMaxIndex; i++) {
maxTab[i] = {idx: 0, value: 0};
if (rolls[i].total != undefined) maxTab[i].value = rolls[i].total;
if (rolls[i]?.total != undefined) maxTab[i].value = rolls[i].total;
}
return { rawDices: rawDices, maxTab: maxTab, rolls: rolls }
@ -164,7 +156,7 @@ export class YggdrasillUtility {
console.log("ROLLLL ATTR!!!!", rollData);
this.createChatWithRollMode( rollData.alias, {
content: await renderTemplate(`systems/fvtt-yggdrasill/templates/chat-generic-result.html`, rollData)
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-yggdrasill/templates/chat-generic-result.html`, rollData)
});
}
@ -192,7 +184,7 @@ export class YggdrasillUtility {
if ( rollData.attackDef) {
rollData.finalBM -= rollData.attackDef.malus;
}
if ( rollData.sort && rollData.sort.system.malus ) {
if ( rollData?.sort?.system?.malus ) {
rollData.finalBM += rollData.sort.system.malus;
}
// Gestion cas blessé (malus de -3)

Binary file not shown.

BIN
packs/armes/000040.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:30.852464 7f844c2006c0 Recovering log #30
2024/05/02-09:20:30.862615 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:30.862709 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.910769 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.910814 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.917379 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.931103 7f844ae006c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.931173 7f844ae006c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.648964 7fe00affd6c0 Recovering log #34
2025/05/01-23:39:32.659213 7fe00affd6c0 Delete type=0 #34
2025/05/01-23:39:32.659296 7fe00affd6c0 Delete type=3 #32
2025/05/02-00:00:01.649791 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.653017 7fe0093ff6c0 Level-0 table #39: 2327 bytes OK
2025/05/02-00:00:01.659302 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.659500 7fe0093ff6c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.690344 7fe0093ff6c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at '!items!x3aMYeKa73GxJ1Ge' @ 45 : 1
2025/05/02-00:00:01.690353 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.693550 7fe0093ff6c0 Generated table #40@1: 15 keys, 2327 bytes
2025/05/02-00:00:01.693570 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 2327 bytes
2025/05/02-00:00:01.700976 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.701159 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.701309 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.701436 7fe0093ff6c0 Manual compaction at level-1 from '!items!x3aMYeKa73GxJ1Ge' @ 45 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.701535 7fdae60006c0 Recovering log #26
2024/04/30-23:29:38.712717 7fdae60006c0 Delete type=3 #24
2024/04/30-23:29:38.712835 7fdae60006c0 Delete type=0 #26
2024/05/01-09:07:55.263638 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.263695 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.270095 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.278160 7fdadfe006c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.278217 7fdadfe006c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2024/05/02-09:20:30.852464 7f844c2006c0 Recovering log #30
2024/05/02-09:20:30.862615 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:30.862709 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.910769 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.910814 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.917379 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.931103 7f844ae006c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.931173 7f844ae006c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/armes/MANIFEST-000036 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/armures/000040.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:30.867038 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.878552 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.878665 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.917585 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.917644 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.924086 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.931117 7f844ae006c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.931187 7f844ae006c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.662878 7fe00a7fc6c0 Recovering log #34
2025/05/01-23:39:32.674030 7fe00a7fc6c0 Delete type=0 #34
2025/05/01-23:39:32.674181 7fe00a7fc6c0 Delete type=3 #32
2025/05/02-00:00:01.701554 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.704718 7fe0093ff6c0 Level-0 table #39: 3197 bytes OK
2025/05/02-00:00:01.710800 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.741412 7fe0093ff6c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.741481 7fe0093ff6c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at '!items!qUXBrstsh5Oo8FEx' @ 24 : 1
2025/05/02-00:00:01.741491 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.744814 7fe0093ff6c0 Generated table #40@1: 8 keys, 3197 bytes
2025/05/02-00:00:01.744839 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 3197 bytes
2025/05/02-00:00:01.751538 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.751680 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.751873 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.782461 7fe0093ff6c0 Manual compaction at level-1 from '!items!qUXBrstsh5Oo8FEx' @ 24 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.716559 7fdae56006c0 Recovering log #26
2024/04/30-23:29:38.727495 7fdae56006c0 Delete type=3 #24
2024/04/30-23:29:38.727612 7fdae56006c0 Delete type=0 #26
2024/05/01-09:07:55.278461 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.278543 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.285552 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.307237 7fdadfe006c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.307315 7fdadfe006c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2024/05/02-09:20:30.867038 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.878552 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.878665 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.917585 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.917644 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.924086 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.931117 7f844ae006c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.931187 7f844ae006c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/blessures/000040.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:30.837163 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.848664 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.848767 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.903725 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.903795 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.910581 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.931083 7f844ae006c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.931143 7f844ae006c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.635609 7fe00b7fe6c0 Recovering log #34
2025/05/01-23:39:32.645474 7fe00b7fe6c0 Delete type=0 #34
2025/05/01-23:39:32.645571 7fe00b7fe6c0 Delete type=3 #32
2025/05/02-00:00:01.629647 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.633062 7fe0093ff6c0 Level-0 table #39: 4373 bytes OK
2025/05/02-00:00:01.639223 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.659477 7fe0093ff6c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.670214 7fe0093ff6c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at '!items!swTZ43FJRWkqjR75' @ 45 : 1
2025/05/02-00:00:01.670224 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.673584 7fe0093ff6c0 Generated table #40@1: 15 keys, 4373 bytes
2025/05/02-00:00:01.673615 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 4373 bytes
2025/05/02-00:00:01.679975 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.680089 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.680247 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.701412 7fe0093ff6c0 Manual compaction at level-1 from '!items!swTZ43FJRWkqjR75' @ 45 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.686138 7fdae74006c0 Recovering log #26
2024/04/30-23:29:38.697631 7fdae74006c0 Delete type=3 #24
2024/04/30-23:29:38.697720 7fdae74006c0 Delete type=0 #26
2024/05/01-09:07:55.248868 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.248948 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.256720 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.278118 7fdadfe006c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.278189 7fdadfe006c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2024/05/02-09:20:30.837163 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.848664 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.848767 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.903725 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.903795 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.910581 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.931083 7f844ae006c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.931143 7f844ae006c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:30.743214 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.753988 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.754165 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.851545 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.851582 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.858223 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.864778 7f844ae006c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.874940 7f844ae006c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.556908 7fe009ffb6c0 Recovering log #34
2025/05/01-23:39:32.567507 7fe009ffb6c0 Delete type=0 #34
2025/05/01-23:39:32.567628 7fe009ffb6c0 Delete type=3 #32
2025/05/02-00:00:01.567300 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.570622 7fe0093ff6c0 Level-0 table #39: 18501 bytes OK
2025/05/02-00:00:01.576851 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.577006 7fe0093ff6c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.609221 7fe0093ff6c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at '!items!ylqZMDyXujUlSorr' @ 90 : 1
2025/05/02-00:00:01.609228 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.612484 7fe0093ff6c0 Generated table #40@1: 30 keys, 18501 bytes
2025/05/02-00:00:01.612511 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 18501 bytes
2025/05/02-00:00:01.618471 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.618573 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.618669 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.618752 7fe0093ff6c0 Manual compaction at level-1 from '!items!ylqZMDyXujUlSorr' @ 90 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.598445 7fdae56006c0 Recovering log #26
2024/04/30-23:29:38.609001 7fdae56006c0 Delete type=3 #24
2024/04/30-23:29:38.609105 7fdae56006c0 Delete type=0 #26
2024/05/01-09:07:55.221157 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.221263 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.228186 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.248533 7fdadfe006c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.248650 7fdadfe006c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2024/05/02-09:20:30.743214 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.753988 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.754165 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.851545 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.851582 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.858223 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.864778 7f844ae006c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.874940 7f844ae006c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:30.774893 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.785238 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.785346 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.874955 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.875023 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.882281 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.896915 7f844ae006c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.903558 7f844ae006c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.583707 7fe00b7fe6c0 Recovering log #34
2025/05/01-23:39:32.593612 7fe00b7fe6c0 Delete type=0 #34
2025/05/01-23:39:32.593661 7fe00b7fe6c0 Delete type=3 #32
2025/05/02-00:00:01.557564 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.560815 7fe0093ff6c0 Level-0 table #39: 1604 bytes OK
2025/05/02-00:00:01.567160 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.576997 7fe0093ff6c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.598577 7fe0093ff6c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at '!items!mIBiTKqfqiiepeyz' @ 9 : 1
2025/05/02-00:00:01.598591 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.601754 7fe0093ff6c0 Generated table #40@1: 3 keys, 1604 bytes
2025/05/02-00:00:01.601786 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 1604 bytes
2025/05/02-00:00:01.608938 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.609061 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.609167 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.618745 7fe0093ff6c0 Manual compaction at level-1 from '!items!mIBiTKqfqiiepeyz' @ 9 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.628864 7fdae74006c0 Recovering log #26
2024/04/30-23:29:38.639377 7fdae74006c0 Delete type=3 #24
2024/04/30-23:29:38.639485 7fdae74006c0 Delete type=0 #26
2024/05/01-09:07:55.235111 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.235152 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.241587 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.248582 7fdadfe006c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.248633 7fdadfe006c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2024/05/02-09:20:30.774893 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.785238 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.785346 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.874955 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.875023 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.882281 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.896915 7f844ae006c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.903558 7f844ae006c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:30.758816 7f844c2006c0 Recovering log #30
2024/05/02-09:20:30.770889 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:30.770994 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.858366 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.858395 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.864599 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.864804 7f844ae006c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.874924 7f844ae006c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.570549 7fe00a7fc6c0 Recovering log #34
2025/05/01-23:39:32.580330 7fe00a7fc6c0 Delete type=0 #34
2025/05/01-23:39:32.580396 7fe00a7fc6c0 Delete type=3 #32
2025/05/02-00:00:01.547194 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.550461 7fe0093ff6c0 Level-0 table #39: 3895 bytes OK
2025/05/02-00:00:01.557446 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.576988 7fe0093ff6c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.577021 7fe0093ff6c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at '!items!mJSWXawEGARKlNja' @ 24 : 1
2025/05/02-00:00:01.577027 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.580395 7fe0093ff6c0 Generated table #40@1: 8 keys, 3895 bytes
2025/05/02-00:00:01.580431 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 3895 bytes
2025/05/02-00:00:01.586914 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.587137 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.587348 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.618727 7fe0093ff6c0 Manual compaction at level-1 from '!items!mJSWXawEGARKlNja' @ 24 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.613651 7fdae6a006c0 Recovering log #26
2024/04/30-23:29:38.625184 7fdae6a006c0 Delete type=3 #24
2024/04/30-23:29:38.625373 7fdae6a006c0 Delete type=0 #26
2024/05/01-09:07:55.228367 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.228409 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.234932 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.248560 7fdadfe006c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.248618 7fdadfe006c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2024/05/02-09:20:30.758816 7f844c2006c0 Recovering log #30
2024/05/02-09:20:30.770889 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:30.770994 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.858366 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.858395 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.864599 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.864804 7f844ae006c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.874924 7f844ae006c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/dons/000040.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:30.806675 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.817229 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.817342 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.889174 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.889211 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.896752 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.903544 7f844ae006c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.903586 7f844ae006c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.608867 7fe009ffb6c0 Recovering log #34
2025/05/01-23:39:32.619070 7fe009ffb6c0 Delete type=0 #34
2025/05/01-23:39:32.619205 7fe009ffb6c0 Delete type=3 #32
2025/05/02-00:00:01.618869 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.622268 7fe0093ff6c0 Level-0 table #39: 8204 bytes OK
2025/05/02-00:00:01.629416 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.659464 7fe0093ff6c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.659511 7fe0093ff6c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at '!items!wnIXKyfqCWT0r4iT' @ 90 : 1
2025/05/02-00:00:01.659517 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.663128 7fe0093ff6c0 Generated table #40@1: 30 keys, 8204 bytes
2025/05/02-00:00:01.663159 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 8204 bytes
2025/05/02-00:00:01.669772 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.669933 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.670115 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.701398 7fe0093ff6c0 Manual compaction at level-1 from '!items!wnIXKyfqCWT0r4iT' @ 90 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.658423 7fdae56006c0 Recovering log #26
2024/04/30-23:29:38.669272 7fdae56006c0 Delete type=3 #24
2024/04/30-23:29:38.669388 7fdae56006c0 Delete type=0 #26
2024/05/01-09:07:55.270287 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.270340 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.277858 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.278175 7fdadfe006c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.278230 7fdadfe006c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2024/05/02-09:20:30.806675 7f844cc006c0 Recovering log #30
2024/05/02-09:20:30.817229 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:30.817342 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.889174 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.889211 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.896752 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.903544 7f844ae006c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.903586 7f844ae006c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/dons/MANIFEST-000036 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/equipement/000040.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:31.057575 7f844c2006c0 Recovering log #30
2024/05/02-09:20:31.068276 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:31.068367 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.993561 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.993597 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:01.000558 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:01.000809 7f844ae006c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2024/05/02-09:24:01.000836 7f844ae006c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.814767 7fe00a7fc6c0 Recovering log #34
2025/05/01-23:39:32.824419 7fe00a7fc6c0 Delete type=0 #34
2025/05/01-23:39:32.824475 7fe00a7fc6c0 Delete type=3 #32
2025/05/02-00:00:01.899378 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.903709 7fe0093ff6c0 Level-0 table #39: 22361 bytes OK
2025/05/02-00:00:01.910320 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.910744 7fe0093ff6c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.931428 7fe0093ff6c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at '!items!zC0kHoqZ9lkQFgI6' @ 423 : 1
2025/05/02-00:00:01.931435 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.934954 7fe0093ff6c0 Generated table #40@1: 141 keys, 22361 bytes
2025/05/02-00:00:01.934995 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 22361 bytes
2025/05/02-00:00:01.942404 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.942634 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.942749 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.952311 7fe0093ff6c0 Manual compaction at level-1 from '!items!zC0kHoqZ9lkQFgI6' @ 423 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.878752 7fdae60006c0 Recovering log #26
2024/04/30-23:29:38.890171 7fdae60006c0 Delete type=3 #24
2024/04/30-23:29:38.890274 7fdae60006c0 Delete type=0 #26
2024/05/01-09:07:55.343882 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.343919 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.350824 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.365593 7fdadfe006c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.365651 7fdadfe006c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2024/05/02-09:20:31.057575 7f844c2006c0 Recovering log #30
2024/05/02-09:20:31.068276 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:31.068367 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.993561 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.993597 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:01.000558 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:01.000809 7f844ae006c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2024/05/02-09:24:01.000836 7f844ae006c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/faiblesses/000040.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:30.821401 7f844c2006c0 Recovering log #30
2024/05/02-09:20:30.832886 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:30.832985 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.896933 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.896967 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.903398 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.903573 7f844ae006c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.903612 7f844ae006c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.621680 7fe00a7fc6c0 Recovering log #34
2025/05/01-23:39:32.632357 7fe00a7fc6c0 Delete type=0 #34
2025/05/01-23:39:32.632424 7fe00a7fc6c0 Delete type=3 #32
2025/05/02-00:00:01.639368 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.642654 7fe0093ff6c0 Level-0 table #39: 7080 bytes OK
2025/05/02-00:00:01.649609 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.659488 7fe0093ff6c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.680340 7fe0093ff6c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at '!items!xf1RAsIzBXQgbLq2' @ 78 : 1
2025/05/02-00:00:01.680352 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.683895 7fe0093ff6c0 Generated table #40@1: 26 keys, 7080 bytes
2025/05/02-00:00:01.683925 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 7080 bytes
2025/05/02-00:00:01.690005 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.690119 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.690251 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.701424 7fe0093ff6c0 Manual compaction at level-1 from '!items!xf1RAsIzBXQgbLq2' @ 78 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.672610 7fdae6a006c0 Recovering log #26
2024/04/30-23:29:38.683005 7fdae6a006c0 Delete type=3 #24
2024/04/30-23:29:38.683098 7fdae6a006c0 Delete type=0 #26
2024/05/01-09:07:55.256906 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.256961 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.263446 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.278143 7fdadfe006c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.278203 7fdadfe006c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2024/05/02-09:20:30.821401 7f844c2006c0 Recovering log #30
2024/05/02-09:20:30.832886 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:30.832985 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.896933 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.896967 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.903398 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.903573 7f844ae006c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.903612 7f844ae006c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:31.042811 7f844cc006c0 Recovering log #30
2024/05/02-09:20:31.054523 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:31.054615 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.986638 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.986739 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.993409 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:01.000786 7f844ae006c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2024/05/02-09:24:01.000868 7f844ae006c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.801529 7fe009ffb6c0 Recovering log #34
2025/05/01-23:39:32.811167 7fe009ffb6c0 Delete type=0 #34
2025/05/01-23:39:32.811253 7fe009ffb6c0 Delete type=3 #32
2025/05/02-00:00:01.867646 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.872073 7fe0093ff6c0 Level-0 table #39: 1937 bytes OK
2025/05/02-00:00:01.879149 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.910677 7fe0093ff6c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.910767 7fe0093ff6c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at '!items!xw2gPhCxDVpkJnxL' @ 15 : 1
2025/05/02-00:00:01.910774 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.914057 7fe0093ff6c0 Generated table #40@1: 5 keys, 1937 bytes
2025/05/02-00:00:01.914102 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 1937 bytes
2025/05/02-00:00:01.920813 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.920988 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.921112 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.952290 7fe0093ff6c0 Manual compaction at level-1 from '!items!xw2gPhCxDVpkJnxL' @ 15 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.864329 7fdae74006c0 Recovering log #26
2024/04/30-23:29:38.875039 7fdae74006c0 Delete type=3 #24
2024/04/30-23:29:38.875162 7fdae74006c0 Delete type=0 #26
2024/05/01-09:07:55.358841 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.358889 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.365401 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.365623 7fdadfe006c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.365664 7fdadfe006c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2024/05/02-09:20:31.042811 7f844cc006c0 Recovering log #30
2024/05/02-09:20:31.054523 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:31.054615 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.986638 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.986739 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.993409 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:01.000786 7f844ae006c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2024/05/02-09:24:01.000868 7f844ae006c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:31.028964 7f844c2006c0 Recovering log #30
2024/05/02-09:20:31.039429 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:31.039533 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.979204 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.979236 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.986242 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.986432 7f844ae006c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.986497 7f844ae006c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.788688 7fe00b7fe6c0 Recovering log #34
2025/05/01-23:39:32.798630 7fe00b7fe6c0 Delete type=0 #34
2025/05/01-23:39:32.798720 7fe00b7fe6c0 Delete type=3 #32
2025/05/02-00:00:01.879296 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.882491 7fe0093ff6c0 Level-0 table #39: 3029 bytes OK
2025/05/02-00:00:01.889505 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.910707 7fe0093ff6c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.942824 7fe0093ff6c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at '!items!sH7HaKggOEaBVzn3' @ 15 : 1
2025/05/02-00:00:01.942831 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.945898 7fe0093ff6c0 Generated table #40@1: 5 keys, 3029 bytes
2025/05/02-00:00:01.945923 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 3029 bytes
2025/05/02-00:00:01.951946 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.952072 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.952217 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.952318 7fe0093ff6c0 Manual compaction at level-1 from '!items!sH7HaKggOEaBVzn3' @ 15 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.848909 7fdae6a006c0 Recovering log #26
2024/04/30-23:29:38.860284 7fdae6a006c0 Delete type=3 #24
2024/04/30-23:29:38.860378 7fdae6a006c0 Delete type=0 #26
2024/05/01-09:07:55.337174 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.337262 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.343707 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.365572 7fdadfe006c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.365637 7fdadfe006c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2024/05/02-09:20:31.028964 7f844c2006c0 Recovering log #30
2024/05/02-09:20:31.039429 7f844c2006c0 Delete type=3 #28
2024/05/02-09:20:31.039533 7f844c2006c0 Delete type=0 #30
2024/05/02-09:24:00.979204 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.979236 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.986242 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.986432 7f844ae006c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.986497 7f844ae006c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000036

View File

@ -1,8 +1,15 @@
2024/05/02-09:20:31.014753 7f844cc006c0 Recovering log #30
2024/05/02-09:20:31.025539 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:31.025663 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.972587 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.972622 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.979047 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.986419 7f844ae006c0 Manual compaction at level-0 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.986455 7f844ae006c0 Manual compaction at level-1 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
2025/05/01-23:39:32.775407 7fe00affd6c0 Recovering log #34
2025/05/01-23:39:32.785711 7fe00affd6c0 Delete type=0 #34
2025/05/01-23:39:32.785835 7fe00affd6c0 Delete type=3 #32
2025/05/02-00:00:01.889636 7fe0093ff6c0 Level-0 table #39: started
2025/05/02-00:00:01.893029 7fe0093ff6c0 Level-0 table #39: 1953 bytes OK
2025/05/02-00:00:01.899195 7fe0093ff6c0 Delete type=0 #37
2025/05/02-00:00:01.910727 7fe0093ff6c0 Manual compaction at level-0 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
2025/05/02-00:00:01.921184 7fe0093ff6c0 Manual compaction at level-1 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at '!items!yKLS6KQafucspg3R' @ 15 : 1
2025/05/02-00:00:01.921192 7fe0093ff6c0 Compacting 1@1 + 1@2 files
2025/05/02-00:00:01.925008 7fe0093ff6c0 Generated table #40@1: 5 keys, 1953 bytes
2025/05/02-00:00:01.925036 7fe0093ff6c0 Compacted 1@1 + 1@2 files => 1953 bytes
2025/05/02-00:00:01.931142 7fe0093ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/05/02-00:00:01.931249 7fe0093ff6c0 Delete type=2 #5
2025/05/02-00:00:01.931354 7fe0093ff6c0 Delete type=2 #39
2025/05/02-00:00:01.952302 7fe0093ff6c0 Manual compaction at level-1 from '!items!yKLS6KQafucspg3R' @ 15 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/04/30-23:29:38.834359 7fdae56006c0 Recovering log #26
2024/04/30-23:29:38.845525 7fdae56006c0 Delete type=3 #24
2024/04/30-23:29:38.845680 7fdae56006c0 Delete type=0 #26
2024/05/01-09:07:55.351078 7fdadfe006c0 Level-0 table #31: started
2024/05/01-09:07:55.351137 7fdadfe006c0 Level-0 table #31: 0 bytes OK
2024/05/01-09:07:55.358613 7fdadfe006c0 Delete type=0 #29
2024/05/01-09:07:55.365609 7fdadfe006c0 Manual compaction at level-0 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
2024/05/01-09:07:55.365681 7fdadfe006c0 Manual compaction at level-1 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
2024/05/02-09:20:31.014753 7f844cc006c0 Recovering log #30
2024/05/02-09:20:31.025539 7f844cc006c0 Delete type=3 #28
2024/05/02-09:20:31.025663 7f844cc006c0 Delete type=0 #30
2024/05/02-09:24:00.972587 7f844ae006c0 Level-0 table #35: started
2024/05/02-09:24:00.972622 7f844ae006c0 Level-0 table #35: 0 bytes OK
2024/05/02-09:24:00.979047 7f844ae006c0 Delete type=0 #33
2024/05/02-09:24:00.986419 7f844ae006c0 Manual compaction at level-0 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)
2024/05/02-09:24:00.986455 7f844ae006c0 Manual compaction at level-1 from '!items!1smXvw2EcuTkytDv' @ 72057594037927935 : 1 .. '!items!yKLS6KQafucspg3R' @ 0 : 0; will stop at (end)

Some files were not shown because too many files have changed in this diff Show More