Update for module support

This commit is contained in:
LeRatierBretonnien 2024-02-22 18:29:04 +01:00
parent 20ab9a17a4
commit ae43c7c920
157 changed files with 500 additions and 402 deletions

View File

@ -421,24 +421,16 @@ export class BoLActor extends Actor {
}
isSorcerer() {
if (this.careers.find(item => item.system.properties.sorcerer == true))
return true
return false
return (this.careers.find(item => item.system.properties.sorcerer ))
}
isAlchemist() {
if (this.careers.find(item => item.system.properties.alchemist == true))
return true
return false
return (this.careers.find(item => item.system.properties.alchemist))
}
isAstrologer() {
if (this.careers.find(item => item.system.properties.astrologer == true))
return true
return false
return (this.careers.find(item => item.system.properties.astrologer))
}
isPriest() {
if (this.careers.find(item => item.system.properties.priest == true))
return true
return false
return (this.careers.find(item => item.system.properties.priest))
}
/*-------------------------------------------- */
@ -592,7 +584,7 @@ export class BoLActor extends Actor {
async spendAlchemyPoint(alchemyId, pcCost) {
let alchemy = this.items.get(alchemyId)
if (alchemy) {
pcCost = Number(pcCost) ?? 0
pcCost = Number(pcCost) || 0
if (this.system.resources.alchemypoints.value >= pcCost) {
let newPC = this.system.resources.alchemypoints.value - pcCost
newPC = (newPC < 0) ? 0 : newPC
@ -606,7 +598,7 @@ export class BoLActor extends Actor {
}
/*-------------------------------------------- */
getAstrologerBonus() {
let astrologer = this.careers.find(item => item.system.properties.astrologer == true)
let astrologer = this.careers.find(item => item.system.properties.astrologer)
if (astrologer) {
return astrologer.system.rank
}
@ -614,7 +606,7 @@ export class BoLActor extends Actor {
}
/*-------------------------------------------- */
getAlchemistBonus() {
let sorcerer = this.careers.find(item => item.system.properties.alchemist == true)
let sorcerer = this.careers.find(item => item.system.properties.alchemist)
if (sorcerer) {
return sorcerer.system.rank
}
@ -622,7 +614,7 @@ export class BoLActor extends Actor {
}
/*-------------------------------------------- */
getSorcererBonus() {
let sorcerer = this.careers.find(item => item.system.properties.sorcerer == true)
let sorcerer = this.careers.find(item => item.system.properties.sorcerer )
if (sorcerer) {
return sorcerer.system.rank
}
@ -888,10 +880,7 @@ export class BoLActor extends Actor {
checkNumeric(myObject) {
if (myObject) {
for (let key in myObject) {
if (myObject[key].value === null) {
myObject[key].value = 0
}
if (myObject[key].value === NaN) {
if (myObject[key].value === null || isNaN(myObject[key].value)) {
myObject[key].value = 0
}
}
@ -913,7 +902,7 @@ export class BoLActor extends Actor {
}
/*-------------------------------------------- */
getInitiativeRank(rollData = undefined, isCombat = false, combatData) {
getInitiativeRank(rollData = undefined, isCombat = false, combatData = undefined) {
let fvttInit = 4 // Pietaille par defaut
if (this.type == 'character') {
fvttInit = 5

View File

@ -116,7 +116,6 @@ export class BoLVehicleSheet extends ActorSheet {
/** @override */
async getData(options) {
const data = super.getData(options)
const actorData = duplicate(data)
let formData = duplicate(data)
formData.config = game.bol.config

View File

@ -19,11 +19,9 @@ export class BoLRoll {
static updateApplicableEffects(rollData) {
let appEffects = []
for (let effect of rollData.bolEffects) {
if (effect.system.properties.identifier == "always") {
appEffects.push(effect)
} else if (effect.system.properties.identifier.includes(rollData.attribute.key)) {
appEffects.push(effect)
} else if (rollData.aptitude && effect.system.properties.identifier.includes(rollData.aptitude.key)) {
if ( (effect.system.properties.identifier == "always") ||
(effect.system.properties.identifier.includes(rollData.attribute.key)) ||
(rollData.aptitude && effect.system.properties.identifier.includes(rollData.aptitude.key)) ){
appEffects.push(effect)
}
}

View File

@ -8,7 +8,7 @@ export class BoLCommands {
static init() {
if (!game.bol.commands) {
const bolCommands = new BoLCommands()
bolCommands.registerCommand({ path: ["/adventure"], func: (content, msg, params) => BoLAdventureGenerator.createAdventure(), descr: "Nouvelle idée d'aventure!" });
//bolCommands.registerCommand({ path: ["/adventure"], func: (content, msg, params) => BoLAdventureGenerator.createAdventure(), descr: "Nouvelle idée d'aventure!" });
bolCommands.registerCommand({ path: ["/pcview"], func: (content, msg, params) => BoLCharacterSummary.displayPCSummary(), descr: "Affiche la liste des PJs!" });
game.bol.commands = bolCommands
}
@ -88,7 +88,7 @@ export class BoLCommands {
console.log("===> Processing command")
let command = commandsTable[name];
path = path + name + " ";
if (command && command.subTable) {
if (command?.subTable) {
if (params[0]) {
return this._processCommand(command.subTable, params[0], params.slice(1), content, msg, path)
}
@ -97,9 +97,9 @@ export class BoLCommands {
return true;
}
}
if (command && command.func) {
if (command?.func) {
const result = command.func(content, msg, params);
if (result == false) {
if (!result) {
BoLCommands._chatAnswer(msg, command.descr);
}
return true;

View File

@ -337,7 +337,7 @@ export class BoLUtility {
// If the user is the message author or the actor owner, proceed
const actor = game.actors.get(data.message.speaker.actor)
//console.log("FOUND 1!!! ", actor)
if (actor && actor.isOwner) return
if (actor?.isOwner) return
else if (game.user.isGM || data.author.id === game.user.id) return
const divButtons = chatCard.find('.actions-section')
@ -354,7 +354,7 @@ export class BoLUtility {
/* -------------------------------------------- */
static requestInitRoll(actorId, combatData) {
let actor = game.actors.get(actorId)
if (actor && actor.isOwner) {
if (actor?.isOwner) {
ui.notifications.info(game.i18n.localize("BOL.ui.warninitiative"))
BoLRoll.aptitudeCheck(actor, "init", undefined, combatData)
}
@ -447,7 +447,7 @@ export class BoLUtility {
}
/* -------------------------------------------- */
static async processDamageHandling(attackId, defenseMode, weaponId = -1, msgId) {
static async processDamageHandling(attackId, defenseMode, weaponId, msgId) {
if (!game.user.isGM) {
return
}
@ -457,7 +457,7 @@ export class BoLUtility {
console.log("Damage Handling", attackId, defenseMode, weaponId)
// Only GM process this
if (rollData && rollData.defenderId) {
if (rollData?.defenderId) {
if (rollData.defenseDone || defenseMode == 'damage-not-applied') {
return
} // ?? Why ???
@ -668,7 +668,6 @@ export class BoLUtility {
let res = myReg.exec(damageString)
let nbDice = parseInt(res[1])
let postForm = 'kh' + nbDice
let modIndex = 3
// Upgrade damage if needed
if (upgradeDamage && (!res[3] || res[3] == "")) {
res[3] = "B" // Upgrade to bonus
@ -680,22 +679,18 @@ export class BoLUtility {
if (res[3] == 'M') {
postForm = 'kl' + nbDice
nbDice++
modIndex = 4
}
if (res[3] == 'MM') {
postForm = 'kl' + nbDice
nbDice += 2
modIndex = 4
}
if (res[3] == 'B') {
postForm = 'kh' + nbDice
nbDice++
modIndex = 4
}
if (res[3] == 'BB') {
postForm = 'kh' + nbDice
nbDice += 2
modIndex = 4
}
}
formula = "(" + nbDice + "d" + res[2] + reroll + postForm + "+" + modifier + ") *" + multiplier

View File

@ -10,7 +10,7 @@ export const registerHandlebarsHelpers = function () {
Handlebars.registerHelper('isEmpty', function (list) {
if (list) return list.length == 0;
else return 0;
else return false;
});
Handlebars.registerHelper('notEmpty', function (list) {
@ -64,8 +64,8 @@ export const registerHandlebarsHelpers = function () {
})
Handlebars.registerHelper('for', function (from, to, incr, block) {
var accum = '';
for (var i = from; i < to; i += incr)
let accum = '';
for (let i = from; i < to; i += incr)
accum += block.fn(i);
return accum;
})
@ -89,8 +89,8 @@ export const registerHandlebarsHelpers = function () {
// If you need to add Handlebars helpers, here are a few useful examples:
Handlebars.registerHelper('concat', function () {
var outStr = '';
for (var arg in arguments) {
let outStr = '';
for (let arg in arguments) {
if (typeof arguments[arg] != 'object') {
outStr += arguments[arg];
}
@ -117,7 +117,6 @@ export const registerHandlebarsHelpers = function () {
return arr[idx];
})
Handlebars.registerHelper('includesKey', function (items, type, key) {
// console.log(items);
return items.filter(i => i.type === type).map(i => i.system.key).includes(key);
})
Handlebars.registerHelper('includes', function (array, val) {
@ -128,10 +127,7 @@ export const registerHandlebarsHelpers = function () {
})
Handlebars.registerHelper('isOwnerOrGM', function (actor) {
console.log("Testing actor", actor.isOwner, game.userId)
if (actor.isOwner || game.isGM) {
return true
}
return false
return actor.isOwner || game.isGM;
})
Handlebars.registerHelper('upperFirst', function (text) {
if (typeof text !== 'string') return text

View File

@ -29,18 +29,6 @@ export default function registerHooks() {
if (data.type == "Item") {
let item = data.data;
console.log(item);
// let command = `let onlyDamage = false;\nlet customLabel = "";\nlet skillDescription = "";\nlet dmgDescription = "";\n\nif (event) {\n if (event.shiftKey) onlyDamage = true;\n}\n\ngame.cof.macros.rollItemMacro("${item._id}", "${item.name}", "${item.type}", 0, 0, 0, onlyDamage, customLabel, skillDescription, dmgDescription);`;
// let macro = game.macros.entities.find(m => (m.name === item.name) && (m.command === command));
// if (!macro) {
// macro = await Macro.create({
// name: item.name,
// type : "script",
// img: item.img,
// command : command
// }, {displaySheet: false})
// }
// game.user.assignHotbarMacro(macro, slot);
}
// Create a macro to open the actor sheet of the actor dropped on the hotbar
else if (data.type == "Actor") {

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000176
MANIFEST-000205

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:06.693613 7fdbf74006c0 Recovering log #174
2024/02/07-19:56:06.751088 7fdbf74006c0 Delete type=3 #172
2024/02/07-19:56:06.751212 7fdbf74006c0 Delete type=0 #174
2024/02/07-21:59:09.854143 7fdbf4c006c0 Level-0 table #179: started
2024/02/07-21:59:09.854177 7fdbf4c006c0 Level-0 table #179: 0 bytes OK
2024/02/07-21:59:09.860969 7fdbf4c006c0 Delete type=0 #177
2024/02/07-21:59:09.880931 7fdbf4c006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.881016 7fdbf4c006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.468570 7fe93be006c0 Recovering log #202
2024/02/22-16:41:06.479365 7fe93be006c0 Delete type=3 #200
2024/02/22-16:41:06.479415 7fe93be006c0 Delete type=0 #202
2024/02/22-17:53:02.235386 7fe9336006c0 Level-0 table #208: started
2024/02/22-17:53:02.235411 7fe9336006c0 Level-0 table #208: 0 bytes OK
2024/02/22-17:53:02.241436 7fe9336006c0 Delete type=0 #206
2024/02/22-17:53:02.248582 7fe9336006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.254693 7fe9336006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.877361 7ff634c006c0 Recovering log #170
2024/02/04-23:08:12.887700 7ff634c006c0 Delete type=3 #168
2024/02/04-23:08:12.887788 7ff634c006c0 Delete type=0 #170
2024/02/05-07:38:07.233915 7ff62e6006c0 Level-0 table #175: started
2024/02/05-07:38:07.233990 7ff62e6006c0 Level-0 table #175: 0 bytes OK
2024/02/05-07:38:07.240361 7ff62e6006c0 Delete type=0 #173
2024/02/05-07:38:07.261065 7ff62e6006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.261109 7ff62e6006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.140399 7f579ea006c0 Recovering log #198
2024/02/22-14:31:16.150043 7f579ea006c0 Delete type=3 #196
2024/02/22-14:31:16.150084 7f579ea006c0 Delete type=0 #198
2024/02/22-14:32:11.044698 7f57978006c0 Level-0 table #203: started
2024/02/22-14:32:11.048686 7f57978006c0 Level-0 table #203: 27473 bytes OK
2024/02/22-14:32:11.054909 7f57978006c0 Delete type=0 #201
2024/02/22-14:32:11.061518 7f57978006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/02/22-14:32:11.072605 7f57978006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 135 : 1
2024/02/22-14:32:11.072621 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:11.076934 7f57978006c0 Generated table #204@1: 24 keys, 27473 bytes
2024/02/22-14:32:11.076952 7f57978006c0 Compacted 1@1 + 1@2 files => 27473 bytes
2024/02/22-14:32:11.083387 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:11.083439 7f57978006c0 Delete type=2 #123
2024/02/22-14:32:11.083523 7f57978006c0 Delete type=2 #203
2024/02/22-14:32:11.102912 7f57978006c0 Manual compaction at level-1 from '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 135 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/armors/000110.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000111

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:06.556852 7fdbf56006c0 Recovering log #80
2024/02/07-19:56:06.618130 7fdbf56006c0 Delete type=3 #78
2024/02/07-19:56:06.618241 7fdbf56006c0 Delete type=0 #80
2024/02/07-21:59:09.861092 7fdbf4c006c0 Level-0 table #85: started
2024/02/07-21:59:09.861122 7fdbf4c006c0 Level-0 table #85: 0 bytes OK
2024/02/07-21:59:09.867886 7fdbf4c006c0 Delete type=0 #83
2024/02/07-21:59:09.880948 7fdbf4c006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.881007 7fdbf4c006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.445060 7fe93be006c0 Recovering log #108
2024/02/22-16:41:06.455322 7fe93be006c0 Delete type=3 #106
2024/02/22-16:41:06.455374 7fe93be006c0 Delete type=0 #108
2024/02/22-17:53:02.221672 7fe9336006c0 Level-0 table #114: started
2024/02/22-17:53:02.221690 7fe9336006c0 Level-0 table #114: 0 bytes OK
2024/02/22-17:53:02.227776 7fe9336006c0 Delete type=0 #112
2024/02/22-17:53:02.235369 7fe9336006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.241521 7fe9336006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.851523 7ff62fe006c0 Recovering log #76
2024/02/04-23:08:12.862496 7ff62fe006c0 Delete type=3 #74
2024/02/04-23:08:12.862563 7ff62fe006c0 Delete type=0 #76
2024/02/05-07:38:07.219273 7ff62e6006c0 Level-0 table #81: started
2024/02/05-07:38:07.219306 7ff62e6006c0 Level-0 table #81: 0 bytes OK
2024/02/05-07:38:07.225772 7ff62e6006c0 Delete type=0 #79
2024/02/05-07:38:07.233682 7ff62e6006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.233734 7ff62e6006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.112569 7f579cc006c0 Recovering log #104
2024/02/22-14:31:16.124091 7f579cc006c0 Delete type=3 #102
2024/02/22-14:31:16.124185 7f579cc006c0 Delete type=0 #104
2024/02/22-14:32:11.013354 7f57978006c0 Level-0 table #109: started
2024/02/22-14:32:11.017110 7f57978006c0 Level-0 table #109: 5473 bytes OK
2024/02/22-14:32:11.023797 7f57978006c0 Delete type=0 #107
2024/02/22-14:32:11.023909 7f57978006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/02/22-14:32:11.023925 7f57978006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at '!items!xhEcsi3WHjbt2ro9' @ 12 : 1
2024/02/22-14:32:11.023929 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:11.027568 7f57978006c0 Generated table #110@1: 6 keys, 5473 bytes
2024/02/22-14:32:11.027586 7f57978006c0 Compacted 1@1 + 1@2 files => 5473 bytes
2024/02/22-14:32:11.034643 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:11.034802 7f57978006c0 Delete type=2 #5
2024/02/22-14:32:11.035014 7f57978006c0 Delete type=2 #109
2024/02/22-14:32:11.061498 7f57978006c0 Manual compaction at level-1 from '!items!xhEcsi3WHjbt2ro9' @ 12 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000175
MANIFEST-000204

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:06.002947 7fdbf56006c0 Recovering log #173
2024/02/07-19:56:06.064045 7fdbf56006c0 Delete type=3 #171
2024/02/07-19:56:06.064169 7fdbf56006c0 Delete type=0 #173
2024/02/07-21:59:09.806013 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.806054 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.812540 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.826360 7fdbf4c006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.826391 7fdbf4c006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.348365 7fe93be006c0 Recovering log #201
2024/02/22-16:41:06.358531 7fe93be006c0 Delete type=3 #199
2024/02/22-16:41:06.358629 7fe93be006c0 Delete type=0 #201
2024/02/22-17:53:02.169488 7fe9336006c0 Level-0 table #207: started
2024/02/22-17:53:02.169527 7fe9336006c0 Level-0 table #207: 0 bytes OK
2024/02/22-17:53:02.176065 7fe9336006c0 Delete type=0 #205
2024/02/22-17:53:02.182333 7fe9336006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.189668 7fe9336006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.748926 7ff62fe006c0 Recovering log #169
2024/02/04-23:08:12.759343 7ff62fe006c0 Delete type=3 #167
2024/02/04-23:08:12.759408 7ff62fe006c0 Delete type=0 #169
2024/02/05-07:38:07.153586 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.153624 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.161240 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.168014 7ff62e6006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.168060 7ff62e6006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/22-14:31:15.997425 7f579cc006c0 Recovering log #197
2024/02/22-14:31:16.007207 7f579cc006c0 Delete type=3 #195
2024/02/22-14:31:16.007249 7f579cc006c0 Delete type=0 #197
2024/02/22-14:32:10.849842 7f57978006c0 Level-0 table #202: started
2024/02/22-14:32:10.853163 7f57978006c0 Level-0 table #202: 17451 bytes OK
2024/02/22-14:32:10.859412 7f57978006c0 Delete type=0 #200
2024/02/22-14:32:10.859542 7f57978006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/02/22-14:32:10.859561 7f57978006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at '!items!zgspy1QKaxdEetEw' @ 177 : 1
2024/02/22-14:32:10.859565 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:10.863528 7f57978006c0 Generated table #203@1: 59 keys, 17451 bytes
2024/02/22-14:32:10.863540 7f57978006c0 Compacted 1@1 + 1@2 files => 17451 bytes
2024/02/22-14:32:10.869463 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:10.869585 7f57978006c0 Delete type=2 #122
2024/02/22-14:32:10.869731 7f57978006c0 Delete type=2 #202
2024/02/22-14:32:10.900164 7f57978006c0 Manual compaction at level-1 from '!items!zgspy1QKaxdEetEw' @ 177 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/boons/MANIFEST-000204 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000175
MANIFEST-000204

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:06.072445 7fdbf6a006c0 Recovering log #173
2024/02/07-19:56:06.125880 7fdbf6a006c0 Delete type=3 #171
2024/02/07-19:56:06.126018 7fdbf6a006c0 Delete type=0 #173
2024/02/07-21:59:09.812699 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.812748 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.819081 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.826371 7fdbf4c006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.826400 7fdbf4c006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.361202 7fe93b4006c0 Recovering log #201
2024/02/22-16:41:06.371190 7fe93b4006c0 Delete type=3 #199
2024/02/22-16:41:06.371241 7fe93b4006c0 Delete type=0 #201
2024/02/22-17:53:02.176160 7fe9336006c0 Level-0 table #207: started
2024/02/22-17:53:02.176178 7fe9336006c0 Level-0 table #207: 0 bytes OK
2024/02/22-17:53:02.182235 7fe9336006c0 Delete type=0 #205
2024/02/22-17:53:02.189659 7fe9336006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.195769 7fe9336006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.762192 7ff62f4006c0 Recovering log #169
2024/02/04-23:08:12.772428 7ff62f4006c0 Delete type=3 #167
2024/02/04-23:08:12.772511 7ff62f4006c0 Delete type=0 #169
2024/02/05-07:38:07.161374 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.161410 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.167670 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.168027 7ff62e6006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.178641 7ff62e6006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.011254 7f579d6006c0 Recovering log #197
2024/02/22-14:31:16.021362 7f579d6006c0 Delete type=3 #195
2024/02/22-14:31:16.021461 7f579d6006c0 Delete type=0 #197
2024/02/22-14:32:10.869789 7f57978006c0 Level-0 table #202: started
2024/02/22-14:32:10.872830 7f57978006c0 Level-0 table #202: 2250 bytes OK
2024/02/22-14:32:10.879394 7f57978006c0 Delete type=0 #200
2024/02/22-14:32:10.900174 7f57978006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/02/22-14:32:10.900203 7f57978006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at '!items!yofwG0YrsL902G77' @ 24 : 1
2024/02/22-14:32:10.900207 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:10.903349 7f57978006c0 Generated table #203@1: 8 keys, 2250 bytes
2024/02/22-14:32:10.903364 7f57978006c0 Compacted 1@1 + 1@2 files => 2250 bytes
2024/02/22-14:32:10.910056 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:10.910155 7f57978006c0 Delete type=2 #122
2024/02/22-14:32:10.910250 7f57978006c0 Delete type=2 #202
2024/02/22-14:32:10.941750 7f57978006c0 Manual compaction at level-1 from '!items!yofwG0YrsL902G77' @ 24 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/careers/000203.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000175
MANIFEST-000204

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:06.194138 7fdbf60006c0 Recovering log #173
2024/02/07-19:56:06.250241 7fdbf60006c0 Delete type=3 #171
2024/02/07-19:56:06.250339 7fdbf60006c0 Delete type=0 #173
2024/02/07-21:59:09.833968 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.834000 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.840070 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.853853 7fdbf4c006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.853958 7fdbf4c006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.384861 7fe93b4006c0 Recovering log #201
2024/02/22-16:41:06.394497 7fe93b4006c0 Delete type=3 #199
2024/02/22-16:41:06.394553 7fe93b4006c0 Delete type=0 #201
2024/02/22-17:53:02.189676 7fe9336006c0 Level-0 table #207: started
2024/02/22-17:53:02.189695 7fe9336006c0 Level-0 table #207: 0 bytes OK
2024/02/22-17:53:02.195654 7fe9336006c0 Delete type=0 #205
2024/02/22-17:53:02.202740 7fe9336006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.208765 7fe9336006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.787685 7ff6356006c0 Recovering log #169
2024/02/04-23:08:12.797161 7ff6356006c0 Delete type=3 #167
2024/02/04-23:08:12.797226 7ff6356006c0 Delete type=0 #169
2024/02/05-07:38:07.185466 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.185514 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.192356 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.199331 7ff62e6006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.205700 7ff62e6006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.039637 7f579e0006c0 Recovering log #197
2024/02/22-14:31:16.049517 7f579e0006c0 Delete type=3 #195
2024/02/22-14:31:16.049566 7f579e0006c0 Delete type=0 #197
2024/02/22-14:32:10.888985 7f57978006c0 Level-0 table #202: started
2024/02/22-14:32:10.893220 7f57978006c0 Level-0 table #202: 40745 bytes OK
2024/02/22-14:32:10.900075 7f57978006c0 Delete type=0 #200
2024/02/22-14:32:10.900193 7f57978006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/02/22-14:32:10.910312 7f57978006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at '!items!zxY3sW0iCJBvwjOS' @ 80 : 1
2024/02/22-14:32:10.910319 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:10.914342 7f57978006c0 Generated table #203@1: 27 keys, 40745 bytes
2024/02/22-14:32:10.914365 7f57978006c0 Compacted 1@1 + 1@2 files => 40745 bytes
2024/02/22-14:32:10.920398 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:10.920541 7f57978006c0 Delete type=2 #122
2024/02/22-14:32:10.920754 7f57978006c0 Delete type=2 #202
2024/02/22-14:32:10.941762 7f57978006c0 Manual compaction at level-1 from '!items!zxY3sW0iCJBvwjOS' @ 80 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000175
MANIFEST-000203

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:06.759932 7fdbf60006c0 Recovering log #173
2024/02/07-19:56:06.817453 7fdbf60006c0 Delete type=3 #171
2024/02/07-19:56:06.817555 7fdbf60006c0 Delete type=0 #173
2024/02/07-21:59:09.881125 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.881171 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.887471 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.909277 7fdbf4c006c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.909331 7fdbf4c006c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.482269 7fe93b4006c0 Recovering log #201
2024/02/22-16:41:06.491825 7fe93b4006c0 Delete type=3 #199
2024/02/22-16:41:06.491889 7fe93b4006c0 Delete type=0 #201
2024/02/22-17:53:02.241528 7fe9336006c0 Level-0 table #206: started
2024/02/22-17:53:02.241546 7fe9336006c0 Level-0 table #206: 0 bytes OK
2024/02/22-17:53:02.248276 7fe9336006c0 Delete type=0 #204
2024/02/22-17:53:02.254684 7fe9336006c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.261049 7fe9336006c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/02/04-23:08:12.891083 7ff6356006c0 Recovering log #169
2024/02/04-23:08:12.902039 7ff6356006c0 Delete type=3 #167
2024/02/04-23:08:12.902105 7ff6356006c0 Delete type=0 #169
2024/02/05-07:38:07.240480 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.240513 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.247590 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.261083 7ff62e6006c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.261132 7ff62e6006c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.154232 7f579e0006c0 Recovering log #197
2024/02/22-14:31:16.226544 7f579e0006c0 Delete type=3 #195
2024/02/22-14:31:16.226812 7f579e0006c0 Delete type=0 #197
2024/02/22-14:32:11.055002 7f57978006c0 Level-0 table #202: started
2024/02/22-14:32:11.055021 7f57978006c0 Level-0 table #202: 0 bytes OK
2024/02/22-14:32:11.061406 7f57978006c0 Delete type=0 #200
2024/02/22-14:32:11.061530 7f57978006c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/02/22-14:32:11.072558 7f57978006c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/creatures/000203.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000175
MANIFEST-000204

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:07.294359 7fdbf6a006c0 Recovering log #173
2024/02/07-19:56:07.381216 7fdbf6a006c0 Delete type=3 #171
2024/02/07-19:56:07.381357 7fdbf6a006c0 Delete type=0 #173
2024/02/07-21:59:09.936176 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.936206 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.943450 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.950178 7fdbf4c006c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.950219 7fdbf4c006c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.582756 7fe93be006c0 Recovering log #201
2024/02/22-16:41:06.592273 7fe93be006c0 Delete type=3 #199
2024/02/22-16:41:06.592326 7fe93be006c0 Delete type=0 #201
2024/02/22-17:53:02.294923 7fe9336006c0 Level-0 table #207: started
2024/02/22-17:53:02.294959 7fe9336006c0 Level-0 table #207: 0 bytes OK
2024/02/22-17:53:02.313594 7fe9336006c0 Delete type=0 #205
2024/02/22-17:53:02.322132 7fe9336006c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.322180 7fe9336006c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.998444 7ff6356006c0 Recovering log #169
2024/02/04-23:08:13.009585 7ff6356006c0 Delete type=3 #167
2024/02/04-23:08:13.009705 7ff6356006c0 Delete type=0 #169
2024/02/05-07:38:07.294572 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.294605 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.301078 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.307727 7ff62e6006c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.307802 7ff62e6006c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.330447 7f579d6006c0 Recovering log #197
2024/02/22-14:31:16.340934 7f579d6006c0 Delete type=3 #195
2024/02/22-14:31:16.341032 7f579d6006c0 Delete type=0 #197
2024/02/22-14:32:11.202876 7f57978006c0 Level-0 table #202: started
2024/02/22-14:32:11.206797 7f57978006c0 Level-0 table #202: 101451 bytes OK
2024/02/22-14:32:11.212718 7f57978006c0 Delete type=0 #200
2024/02/22-14:32:11.233384 7f57978006c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/02/22-14:32:11.233434 7f57978006c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 462 : 1
2024/02/22-14:32:11.233439 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:11.238262 7f57978006c0 Generated table #203@1: 155 keys, 101451 bytes
2024/02/22-14:32:11.238276 7f57978006c0 Compacted 1@1 + 1@2 files => 101451 bytes
2024/02/22-14:32:11.244199 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:11.244258 7f57978006c0 Delete type=2 #122
2024/02/22-14:32:11.244363 7f57978006c0 Delete type=2 #202
2024/02/22-14:32:11.244817 7f57978006c0 Manual compaction at level-1 from '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 462 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 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-000174
MANIFEST-000203

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:07.228488 7fdbf56006c0 Recovering log #172
2024/02/07-19:56:07.291311 7fdbf56006c0 Delete type=3 #170
2024/02/07-19:56:07.291491 7fdbf56006c0 Delete type=0 #172
2024/02/07-21:59:09.929699 7fdbf4c006c0 Level-0 table #177: started
2024/02/07-21:59:09.929724 7fdbf4c006c0 Level-0 table #177: 0 bytes OK
2024/02/07-21:59:09.935882 7fdbf4c006c0 Delete type=0 #175
2024/02/07-21:59:09.936049 7fdbf4c006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.936080 7fdbf4c006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.570946 7fe93b4006c0 Recovering log #200
2024/02/22-16:41:06.580979 7fe93b4006c0 Delete type=3 #198
2024/02/22-16:41:06.581036 7fe93b4006c0 Delete type=0 #200
2024/02/22-17:53:02.288073 7fe9336006c0 Level-0 table #206: started
2024/02/22-17:53:02.288100 7fe9336006c0 Level-0 table #206: 0 bytes OK
2024/02/22-17:53:02.294740 7fe9336006c0 Delete type=0 #204
2024/02/22-17:53:02.313705 7fe9336006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.322143 7fe9336006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.985708 7ff62fe006c0 Recovering log #168
2024/02/04-23:08:12.996379 7ff62fe006c0 Delete type=3 #166
2024/02/04-23:08:12.996440 7ff62fe006c0 Delete type=0 #168
2024/02/05-07:38:07.287274 7ff62e6006c0 Level-0 table #173: started
2024/02/05-07:38:07.287318 7ff62e6006c0 Level-0 table #173: 0 bytes OK
2024/02/05-07:38:07.294431 7ff62e6006c0 Delete type=0 #171
2024/02/05-07:38:07.307711 7ff62e6006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.307750 7ff62e6006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.317419 7f579cc006c0 Recovering log #196
2024/02/22-14:31:16.326922 7f579cc006c0 Delete type=3 #194
2024/02/22-14:31:16.326972 7f579cc006c0 Delete type=0 #196
2024/02/22-14:32:11.182318 7f57978006c0 Level-0 table #201: started
2024/02/22-14:32:11.186183 7f57978006c0 Level-0 table #201: 948 bytes OK
2024/02/22-14:32:11.192150 7f57978006c0 Delete type=0 #199
2024/02/22-14:32:11.202867 7f57978006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/02/22-14:32:11.212862 7f57978006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at '!items!zwSNMO9HpiqUCMt8' @ 8 : 1
2024/02/22-14:32:11.212871 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:11.216760 7f57978006c0 Generated table #202@1: 4 keys, 948 bytes
2024/02/22-14:32:11.216782 7f57978006c0 Compacted 1@1 + 1@2 files => 948 bytes
2024/02/22-14:32:11.222868 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:11.223009 7f57978006c0 Delete type=2 #5
2024/02/22-14:32:11.223160 7f57978006c0 Delete type=2 #201
2024/02/22-14:32:11.233394 7f57978006c0 Manual compaction at level-1 from '!items!zwSNMO9HpiqUCMt8' @ 8 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/equipment/000204.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000176
MANIFEST-000205

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:06.385989 7fdbf74006c0 Recovering log #174
2024/02/07-19:56:06.446283 7fdbf74006c0 Delete type=3 #172
2024/02/07-19:56:06.446441 7fdbf74006c0 Delete type=0 #174
2024/02/07-21:59:09.840202 7fdbf4c006c0 Level-0 table #179: started
2024/02/07-21:59:09.840243 7fdbf4c006c0 Level-0 table #179: 0 bytes OK
2024/02/07-21:59:09.846953 7fdbf4c006c0 Delete type=0 #177
2024/02/07-21:59:09.853881 7fdbf4c006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.853983 7fdbf4c006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.421072 7fe93be006c0 Recovering log #202
2024/02/22-16:41:06.430819 7fe93be006c0 Delete type=3 #200
2024/02/22-16:41:06.430872 7fe93be006c0 Delete type=0 #202
2024/02/22-17:53:02.208772 7fe9336006c0 Level-0 table #208: started
2024/02/22-17:53:02.208792 7fe9336006c0 Level-0 table #208: 0 bytes OK
2024/02/22-17:53:02.215001 7fe9336006c0 Delete type=0 #206
2024/02/22-17:53:02.221655 7fe9336006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.227875 7fe9336006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.826307 7ff634c006c0 Recovering log #170
2024/02/04-23:08:12.836127 7ff634c006c0 Delete type=3 #168
2024/02/04-23:08:12.836208 7ff634c006c0 Delete type=0 #170
2024/02/05-07:38:07.225889 7ff62e6006c0 Level-0 table #175: started
2024/02/05-07:38:07.225925 7ff62e6006c0 Level-0 table #175: 0 bytes OK
2024/02/05-07:38:07.233435 7ff62e6006c0 Delete type=0 #173
2024/02/05-07:38:07.233700 7ff62e6006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.233772 7ff62e6006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.081714 7f579ea006c0 Recovering log #198
2024/02/22-14:31:16.092084 7f579ea006c0 Delete type=3 #196
2024/02/22-14:31:16.092130 7f579ea006c0 Delete type=0 #198
2024/02/22-14:32:10.962413 7f57978006c0 Level-0 table #203: started
2024/02/22-14:32:10.966000 7f57978006c0 Level-0 table #203: 10867 bytes OK
2024/02/22-14:32:10.972091 7f57978006c0 Delete type=0 #201
2024/02/22-14:32:10.983175 7f57978006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/02/22-14:32:10.983209 7f57978006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at '!items!yE8UH6YAgNGjKDEu' @ 284 : 1
2024/02/22-14:32:10.983214 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:10.986425 7f57978006c0 Generated table #204@1: 43 keys, 10867 bytes
2024/02/22-14:32:10.986441 7f57978006c0 Compacted 1@1 + 1@2 files => 10867 bytes
2024/02/22-14:32:10.992405 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:10.992579 7f57978006c0 Delete type=2 #99
2024/02/22-14:32:10.992839 7f57978006c0 Delete type=2 #203
2024/02/22-14:32:11.023883 7f57978006c0 Manual compaction at level-1 from '!items!yE8UH6YAgNGjKDEu' @ 284 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000174
MANIFEST-000203

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:07.032095 7fdbf6a006c0 Recovering log #172
2024/02/07-19:56:07.084279 7fdbf6a006c0 Delete type=3 #170
2024/02/07-19:56:07.084371 7fdbf6a006c0 Delete type=0 #172
2024/02/07-21:59:09.909453 7fdbf4c006c0 Level-0 table #177: started
2024/02/07-21:59:09.909480 7fdbf4c006c0 Level-0 table #177: 0 bytes OK
2024/02/07-21:59:09.915719 7fdbf4c006c0 Delete type=0 #175
2024/02/07-21:59:09.936008 7fdbf4c006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.936058 7fdbf4c006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.534424 7fe93be006c0 Recovering log #200
2024/02/22-16:41:06.544253 7fe93be006c0 Delete type=3 #198
2024/02/22-16:41:06.544346 7fe93be006c0 Delete type=0 #200
2024/02/22-17:53:02.274043 7fe9336006c0 Level-0 table #206: started
2024/02/22-17:53:02.274079 7fe9336006c0 Level-0 table #206: 0 bytes OK
2024/02/22-17:53:02.281833 7fe9336006c0 Delete type=0 #204
2024/02/22-17:53:02.288052 7fe9336006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.294910 7fe9336006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.946606 7ff6356006c0 Recovering log #168
2024/02/04-23:08:12.956492 7ff6356006c0 Delete type=3 #166
2024/02/04-23:08:12.956547 7ff6356006c0 Delete type=0 #168
2024/02/05-07:38:07.274090 7ff62e6006c0 Level-0 table #173: started
2024/02/05-07:38:07.274125 7ff62e6006c0 Level-0 table #173: 0 bytes OK
2024/02/05-07:38:07.280636 7ff62e6006c0 Delete type=0 #171
2024/02/05-07:38:07.287141 7ff62e6006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.287195 7ff62e6006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.273721 7f579d6006c0 Recovering log #196
2024/02/22-14:31:16.283269 7f579d6006c0 Delete type=3 #194
2024/02/22-14:31:16.283310 7f579d6006c0 Delete type=0 #196
2024/02/22-14:32:11.151347 7f57978006c0 Level-0 table #201: started
2024/02/22-14:32:11.154683 7f57978006c0 Level-0 table #201: 15373 bytes OK
2024/02/22-14:32:11.160739 7f57978006c0 Delete type=0 #199
2024/02/22-14:32:11.182309 7f57978006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/02/22-14:32:11.192298 7f57978006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at '!items!vGydqADwTsHZ9B3j' @ 60 : 1
2024/02/22-14:32:11.192304 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:11.195592 7f57978006c0 Generated table #202@1: 30 keys, 15373 bytes
2024/02/22-14:32:11.195617 7f57978006c0 Compacted 1@1 + 1@2 files => 15373 bytes
2024/02/22-14:32:11.202434 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:11.202698 7f57978006c0 Delete type=2 #5
2024/02/22-14:32:11.202793 7f57978006c0 Delete type=2 #201
2024/02/22-14:32:11.212848 7f57978006c0 Manual compaction at level-1 from '!items!vGydqADwTsHZ9B3j' @ 60 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000175
MANIFEST-000204

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:06.133028 7fdbf74006c0 Recovering log #173
2024/02/07-19:56:06.187192 7fdbf74006c0 Delete type=3 #171
2024/02/07-19:56:06.187312 7fdbf74006c0 Delete type=0 #173
2024/02/07-21:59:09.819499 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.819554 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.826213 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.826382 7fdbf4c006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.826407 7fdbf4c006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.373005 7fe93be006c0 Recovering log #201
2024/02/22-16:41:06.382797 7fe93be006c0 Delete type=3 #199
2024/02/22-16:41:06.382849 7fe93be006c0 Delete type=0 #201
2024/02/22-17:53:02.182351 7fe9336006c0 Level-0 table #207: started
2024/02/22-17:53:02.182372 7fe9336006c0 Level-0 table #207: 0 bytes OK
2024/02/22-17:53:02.189564 7fe9336006c0 Delete type=0 #205
2024/02/22-17:53:02.195760 7fe9336006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.202750 7fe9336006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.774567 7ff634c006c0 Recovering log #169
2024/02/04-23:08:12.785474 7ff634c006c0 Delete type=3 #167
2024/02/04-23:08:12.785530 7ff634c006c0 Delete type=0 #169
2024/02/05-07:38:07.178656 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.178701 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.185285 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.199317 7ff62e6006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.205720 7ff62e6006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.025182 7f579ea006c0 Recovering log #197
2024/02/22-14:31:16.035699 7f579ea006c0 Delete type=3 #195
2024/02/22-14:31:16.035837 7f579ea006c0 Delete type=0 #197
2024/02/22-14:32:10.879482 7f57978006c0 Level-0 table #202: started
2024/02/22-14:32:10.882875 7f57978006c0 Level-0 table #202: 14027 bytes OK
2024/02/22-14:32:10.888891 7f57978006c0 Delete type=0 #200
2024/02/22-14:32:10.900184 7f57978006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/02/22-14:32:10.920923 7f57978006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at '!items!znd0K3b7HzYpdehs' @ 129 : 1
2024/02/22-14:32:10.920938 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:10.924879 7f57978006c0 Generated table #203@1: 43 keys, 14027 bytes
2024/02/22-14:32:10.924887 7f57978006c0 Compacted 1@1 + 1@2 files => 14027 bytes
2024/02/22-14:32:10.931704 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:10.931855 7f57978006c0 Delete type=2 #122
2024/02/22-14:32:10.931953 7f57978006c0 Delete type=2 #202
2024/02/22-14:32:10.941776 7f57978006c0 Manual compaction at level-1 from '!items!znd0K3b7HzYpdehs' @ 129 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/flaws/MANIFEST-000204 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/godsfaith/000203.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000175
MANIFEST-000204

View File

@ -1,8 +1,8 @@
2024/02/07-19:56:06.975438 7fdbf56006c0 Recovering log #173
2024/02/07-19:56:07.024128 7fdbf56006c0 Delete type=3 #171
2024/02/07-19:56:07.024279 7fdbf56006c0 Delete type=0 #173
2024/02/07-21:59:09.901624 7fdbf4c006c0 Level-0 table #178: started
2024/02/07-21:59:09.901661 7fdbf4c006c0 Level-0 table #178: 0 bytes OK
2024/02/07-21:59:09.909134 7fdbf4c006c0 Delete type=0 #176
2024/02/07-21:59:09.909321 7fdbf4c006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/07-21:59:09.909356 7fdbf4c006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/22-16:41:06.523003 7fe93b4006c0 Recovering log #201
2024/02/22-16:41:06.533045 7fe93b4006c0 Delete type=3 #199
2024/02/22-16:41:06.533091 7fe93b4006c0 Delete type=0 #201
2024/02/22-17:53:02.261073 7fe9336006c0 Level-0 table #207: started
2024/02/22-17:53:02.261096 7fe9336006c0 Level-0 table #207: 0 bytes OK
2024/02/22-17:53:02.267301 7fe9336006c0 Delete type=0 #205
2024/02/22-17:53:02.274013 7fe9336006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/22-17:53:02.281911 7fe9336006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,15 @@
2024/02/04-23:08:12.933553 7ff62fe006c0 Recovering log #169
2024/02/04-23:08:12.944160 7ff62fe006c0 Delete type=3 #167
2024/02/04-23:08:12.944259 7ff62fe006c0 Delete type=0 #169
2024/02/05-07:38:07.261324 7ff62e6006c0 Level-0 table #174: started
2024/02/05-07:38:07.261377 7ff62e6006c0 Level-0 table #174: 0 bytes OK
2024/02/05-07:38:07.267607 7ff62e6006c0 Delete type=0 #172
2024/02/05-07:38:07.287113 7ff62e6006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/05-07:38:07.287154 7ff62e6006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/22-14:31:16.259740 7f579cc006c0 Recovering log #197
2024/02/22-14:31:16.269487 7f579cc006c0 Delete type=3 #195
2024/02/22-14:31:16.269529 7f579cc006c0 Delete type=0 #197
2024/02/22-14:32:11.102933 7f57978006c0 Level-0 table #202: started
2024/02/22-14:32:11.106129 7f57978006c0 Level-0 table #202: 4876 bytes OK
2024/02/22-14:32:11.112142 7f57978006c0 Delete type=0 #200
2024/02/22-14:32:11.131696 7f57978006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/02/22-14:32:11.141273 7f57978006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at '!items!xR5KdgOQucELl1sn' @ 72 : 1
2024/02/22-14:32:11.141282 7f57978006c0 Compacting 1@1 + 1@2 files
2024/02/22-14:32:11.144515 7f57978006c0 Generated table #203@1: 24 keys, 4876 bytes
2024/02/22-14:32:11.144536 7f57978006c0 Compacted 1@1 + 1@2 files => 4876 bytes
2024/02/22-14:32:11.151039 7f57978006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/02/22-14:32:11.151159 7f57978006c0 Delete type=2 #122
2024/02/22-14:32:11.151266 7f57978006c0 Delete type=2 #202
2024/02/22-14:32:11.160856 7f57978006c0 Manual compaction at level-1 from '!items!xR5KdgOQucELl1sn' @ 72 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/languages/000203.ldb Normal file

Binary file not shown.

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