Compare commits

..

4 Commits

Author SHA1 Message Date
5de40d4998 Ajout du xplog 2024-01-12 18:42:12 +01:00
c7c26c0033 Ajout macro roll 2024-01-02 23:34:38 +01:00
5c4c6d73ee Add new translations 2023-12-05 10:23:55 +01:00
1a0049a3f5 Add new translations 2023-12-05 10:23:39 +01:00
160 changed files with 572 additions and 385 deletions

View File

@ -24,6 +24,7 @@ Les livres du jeu sont nécessaires pour jouer, et sont disponibles ici : http:/
Barbarians of Lemuria, Mythic edition, est un jeu de Simon Washbourne
Auteur : Simon Washbourne.
## Crédits de la version française
Barbarians of Lemuria, le jeu de rôle de Sword & Sorcery, est une publication des éditions Ludospherik, tous droits réservés.

View File

@ -17,11 +17,11 @@ Changes :
- Correction sur l'encaissement sans armure
- Ajout d'une note d'explication sur l'initiative
# v11.0.8
- Correction sur les malus de bouclier (blocage)
- Corrrection sur le malus d'init des boucliers qui était mal affiché dans la fiche d'item
# v10.4.0
- Ajout de la gestion d'effets

View File

@ -139,6 +139,12 @@
"BOL.ui.registerInit": "Enregistrer comme Init. de combat",
"BOL.ui.initMalus": "Malus d'initiative",
"BOL.ui.magicnewrules": "Règles supplémentaires (cf. supplément fan-made Sorcellerie!)",
"BOL.ui.other":"Autre",
"BOL.ui.career":"Carrière",
"BOL.ui.boon":"Avantage",
"BOL.ui.flaw":"Désanvatage",
"BOL.ui.cost":"Cout XP",
"BOL.ui.date":"Date",
"BOL.ui.isSorcerer": "Carrière de Sorcier ?",
"BOL.ui.isAlchemist": "Carrière d'Alchimiste ?",
@ -251,6 +257,7 @@
"BOL.featureSubtypes.effects": "Effets",
"BOL.featureSubtypes.boleffect": "Effet",
"BOL.featureSubtypes.horoscope": "Horoscope",
"BOL.featureSubtypes.xplog": "Log d'XP",
"BOL.fightOptionTypes.armor": "Attaque au défaut d'armure",
"BOL.fightOptionTypes.intrepid": "Attaque intrépide",
@ -581,6 +588,8 @@
"BOL.ui.biosigns": "Signes distinctifs",
"BOL.ui.biodescription": "Description",
"BOL.ui.bionotes": "Notes",
"BOL.ui.xplog":"Journal d'XP",
"BOL.ui.value":"Valeur",
"BOL.chat.welcome1": "Bienvenue dans Barbarians of Lemuria (Ludospherik version)",
"BOL.chat.welcome2": "Les livres nécessaires pour jouer sont disponibles sur le site de <a href='http://www.ludospherik.fr/content/14-barbarians-of-lemuria'>l'éditeur Ludospherik.</a>",
@ -589,6 +598,10 @@
"BOL.chat.welcome5": "Consulter l'aide en ligne pour plus d'informations : @UUID[Compendium.bol.aides-de-jeu.97rugQOtiwt8zPfQ]{Aide du Jeu}.",
"BOL.chat.welcome6": "Bon jeu en Lemurie !",
"BOL.chat.nodamage": "Ne pas appliquer les dommages",
"BOL.chat.pcwarning": "Attention ! Aucun personnage n'est relié au joueur !",
"BOL.chat.pcwarningmsg": "<b>ATTENTION</b> Le joueur n'est relié à aucun personnage !",
"BOL.chat.pcnotlinked": "Le token du personnage joueur n'est pas relié à l'acteur",
"BOL.chat.pcnotlinkedmsg": "<b>ATTENTION</b> Le token du personnage joueur n'est pas relié à l'acteur !",
"BOL.settings.rollArmor": "Effectuer des jets pour les armures",
"BOL.settings.rollArmorTooltip": "Effectue un jet de dés pour les armures (valeur fixe si désactivé)",

View File

@ -27,7 +27,7 @@ export class BoLActorSheet extends ActorSheet {
function onLoad() {
let logoSheet = BoLUtility.getLogoActorSheet()
$(".bol-actor-form").css("backgroundImage",`url(${logoSheet})`)
$(".bol-actor-form").css("backgroundImage", `url(${logoSheet})`)
}
// Setup everything onload
$(function () { onLoad(); });
@ -147,6 +147,7 @@ export class BoLActorSheet extends ActorSheet {
formData.fightoptions = this.actor.fightoptions
formData.ammos = this.actor.ammos
formData.misc = this.actor.misc
formData.xplog = this.actor.xplog
formData.combat = this.actor.buildCombat()
formData.initiativeRank = this.actor.getInitiativeRank()
//formData.combatCreature = this.actor.buildCombatCreature()
@ -155,12 +156,12 @@ export class BoLActorSheet extends ActorSheet {
formData.options = this.options
formData.owner = this.document.isOwner
formData.editScore = this.options.editScore
formData.useBougette = (this.actor.type == "character" && BoLUtility.getUseBougette()) || false
formData.useBougette = (this.actor.type == "character" && BoLUtility.getUseBougette()) || false
formData.bougette = this.actor.getBougette()
formData.charType = this.actor.getCharType()
formData.villainy = this.actor.getVillainy()
formData.biography = await TextEditor.enrichHTML(this.object.system.details?.biography || "", {async: true})
formData.notes = await TextEditor.enrichHTML(this.object.system.details.notes || "", {async: true})
formData.villainy = this.actor.getVillainy()
formData.biography = await TextEditor.enrichHTML(this.object.system.details?.biography || "", { async: true })
formData.notes = await TextEditor.enrichHTML(this.object.system.details.notes || "", { async: true })
formData.isSorcerer = this.actor.isSorcerer()
formData.isAlchemist = this.actor.isAlchemist()
formData.isAstrologer = this.actor.isAstrologer()
@ -248,22 +249,22 @@ export class BoLActorSheet extends ActorSheet {
case "attributexp":
this.actor.incAttributeXP(dataset.key)
break;
case "bougette":
this.actor.rollBougette()
break;
case "careerxp":
this.actor.incCareerXP( li.data("item-id"))
this.actor.incCareerXP(li.data("item-id"))
break;
case "horoscope-minor":
BoLRoll.horoscopeCheck(this.actor, event, "minor")
break
case "horoscope-major":
BoLRoll.horoscopeCheck(this.actor, event, "major")
break
break
case "horoscope-major-group":
BoLRoll.horoscopeCheck(this.actor, event, "majorgroup")
break
break
case "bougette":
this.actor.rollBougette()
break;
default: break;
}
}

View File

@ -204,6 +204,24 @@ export class BoLActor extends Actor {
return undefined
}
/* -------------------------------------------- */
addXPLog(type, name, cost, value) {
let xplog = {
name: "XP : "+game.i18n.localize(type), type: "feature",
img: "icons/magic/symbols/chevron-elipse-circle-blue.webp",
system: {
subtype: "xplog", properties: {
xptype: type,
xpdate: new Date().toLocaleDateString(),
xpname: name,
xpcost: cost,
xpvalue: value
}
}
}
this.createEmbeddedDocuments('Item', [xplog])
}
/* -------------------------------------------- */
incAttributeXP(key) {
let attr = duplicate(this.system.attributes[key])
@ -214,6 +232,7 @@ export class BoLActor extends Actor {
attr.value += 1
xp.spent += nextXP
this.update({ [`system.attributes.${key}`]: attr, [`system.xp`]: xp })
this.addXPLog("attribute", key, nextXP, attr.value)
} else {
ui.notifications.warn("Pas assez de points d'expérience !")
}
@ -230,6 +249,7 @@ export class BoLActor extends Actor {
apt.value += 1
xp.spent += nextXP
this.update({ [`system.aptitudes.${key}`]: apt, [`system.xp`]: xp })
this.addXPLog("aptitude", key, nextXP, apt.value)
} else {
ui.notifications.warn("Pas assez de points d'expérience !")
}
@ -246,6 +266,7 @@ export class BoLActor extends Actor {
xp.spent += nextXP
this.update({ [`system.xp`]: xp })
this.updateEmbeddedDocuments('Item', [{ _id: career._id, 'system.rank': career.system.rank + 1 }])
this.addXPLog("career", career.name, nextXP, career.system.rank+1)
} else {
ui.notifications.warn("Pas assez de points d'expérience !")
}
@ -298,6 +319,9 @@ export class BoLActor extends Actor {
get boleffects() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "boleffect")
}
get xplog() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "xplog")
}
get horoscopes() {
return this.items.filter(i => i.type === "feature" && i.system.subtype === "horoscope")
}

View File

@ -15,8 +15,9 @@ import { BoLCombatManager } from "./system/bol-combat.js"
import { BoLTokenHud } from "./system/bol-action-hud.js"
import { BoLHotbar } from "./system/bol-hotbar.js"
import { BoLAdventureGenerator } from "./system/bol-adventure-generator.js"
import { BoLCommands} from "./system/bol-commands.js"
import { BoLCharacterSummary} from "./system/bol-character-summary.js"
import { BoLCommands } from "./system/bol-commands.js"
import { BoLCharacterSummary } from "./system/bol-character-summary.js"
import { BoLRoll } from "./controllers/bol-rolls.js"
/* -------------------------------------------- */
Hooks.once('init', async function () {
@ -25,10 +26,11 @@ Hooks.once('init', async function () {
BoLActor,
BoLItem,
BoLHotbar,
BoLRoll,
macros: Macros,
config: BOL
};
// Game socket
game.socket.on("system.bol", sockmsg => {
BoLUtility.onSocketMessage(sockmsg);
@ -43,7 +45,7 @@ Hooks.once('init', async function () {
formula: "2d6+@attributes.mind.value+@aptitudes.init.value",
decimals: 2
};
// Define custom Entity classes
CONFIG.Actor.documentClass = BoLActor;
CONFIG.Item.documentClass = BoLItem;
@ -77,8 +79,8 @@ Hooks.once('init', async function () {
/* -------------------------------------------- */
// Register world usage statistics
function registerUsageCount( registerKey ) {
if ( game.user.isGM ) {
function registerUsageCount(registerKey) {
if (game.user.isGM) {
game.settings.register(registerKey, "world-key", {
name: "Unique world key",
scope: "world",
@ -88,14 +90,14 @@ function registerUsageCount( registerKey ) {
});
let worldKey = game.settings.get(registerKey, "world-key")
if ( worldKey == undefined || worldKey == "" ) {
if (worldKey == undefined || worldKey == "") {
worldKey = randomID(32)
game.settings.set(registerKey, "world-key", worldKey )
game.settings.set(registerKey, "world-key", worldKey)
}
// Simple API counter
let regURL = `https://www.uberwald.me/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.version}"`
//$.ajaxSetup({
//headers: { 'Access-Control-Allow-Origin': '*' }
//headers: { 'Access-Control-Allow-Origin': '*' }
//})
$.ajax(regURL)
}
@ -108,24 +110,40 @@ function welcomeMessage() {
whisper: [game.user.id],
content: `<div id="welcome-message-pegasus"><span class="rdd-roll-part">
<strong>` + game.i18n.localize("BOL.chat.welcome1") + `</strong><p>` +
game.i18n.localize("BOL.chat.welcome2") + "<p>" +
game.i18n.localize("BOL.chat.welcome3") + "<p>" +
game.i18n.localize("BOL.chat.welcome4") + "</p>" +
game.i18n.localize("BOL.chat.welcome5") + "<br>" +
game.i18n.localize("BOL.chat.welcome6")
} )
game.i18n.localize("BOL.chat.welcome2") + "<p>" +
game.i18n.localize("BOL.chat.welcome3") + "<p>" +
game.i18n.localize("BOL.chat.welcome4") + "</p>" +
game.i18n.localize("BOL.chat.welcome5") + "<br>" +
game.i18n.localize("BOL.chat.welcome6")
})
}
/* -------------------------------------------- */
Hooks.once('ready', async function () {
BoLUtility.ready()
BoLCharacterSummary.ready()
BoLCharacterSummary.ready()
registerUsageCount(game.system.id)
welcomeMessage()
// User warning
if (!game.user.isGM && game.user.character == undefined) {
ui.notifications.info(game.i18n.localize("BOL.chat.pcwarning"));
ChatMessage.create({
content: game.i18n.localize("BOL.chat.pcwarningmsg") + game.user.name,
user: game.user._id
});
}
if (!game.user.isGM && game.user.character && !game.user.character.prototypeToken.actorLink) {
ui.notifications.info(game.i18n.localize("BOL.chat.pcnotlinked"));
ChatMessage.create({
content: game.i18n.localize("BOL.chat.pcnotlinkedmsg") + game.user.name,
user: game.user._id
});
}
})

View File

@ -65,7 +65,6 @@ export class BoLRoll {
adv: "0",
mod: 0,
modRanged: 0,
aptValue: 0,
bolEffects: actor.boleffects,
horoscopeGroupList: this.buildHoroscopeGroupList()
}
@ -78,7 +77,7 @@ export class BoLRoll {
}
/* -------------------------------------------- */
static attributeCheck(actor, key, event, combatData) {
static attributeCheck(actor, key="vigor", event=undefined, combatData=undefined) {
let attribute = eval(`actor.system.attributes.${key}`)
@ -91,7 +90,7 @@ export class BoLRoll {
}
/* -------------------------------------------- */
static aptitudeCheck(actor, key, event, combatData) {
static aptitudeCheck(actor, key="init", event=undefined, combatData=undefined) {
let aptitude = eval(`actor.system.aptitudes.${key}`)
let attrKey = this.getDefaultAttribute(key)

View File

@ -28,7 +28,9 @@ export class BoLItemSheet extends ItemSheet {
data.isGM = game.user.isGM;
data.itemProperties = this.item.itemProperties;
data.description = await TextEditor.enrichHTML(this.object.system.description, { async: true })
if (data.document.actor) {
data.careers = data.document.actor.careers
}
// Dynamic default data fix/adapt
if (itemData.type == "item") {
if (!itemData.system.category) {

View File

@ -31,6 +31,15 @@ BOL.damageMultiplier = {
"8": "x8"
}
BOL.listTypes = {
"attribute": "BOL.ui.attribute",
"aptitude": "BOL.ui.aptitude",
"career": "BOL.ui.career",
"boon": "BOL.ui.boon",
"flaw": "BOL.ui.flaw",
"other": "BOL.ui.other"
}
BOL.spellType = {
"0": "BOL.spellItem.charm",
"1": "BOL.spellItem.circle1",
@ -271,6 +280,7 @@ BOL.featureSubtypes = {
"fightoption" : "BOL.featureSubtypes.fightOption",
"boleffect": "BOL.featureSubtypes.effect",
"horoscope": "BOL.featureSubtypes.horoscope",
"xplog": "BOL.featureSubtypes.xplog",
}
BOL.fightOptionTypes = {
@ -286,7 +296,7 @@ BOL.fightOptionTypes = {
BOL.itemIcons = {
"item": "icons/containers/chest/chest-worn-oak-tan.webp",
"capacity": "icons/sundries/scrolls/scroll-plain-tan-red.webp",
"feature": "icons/sundries/scrolls/scroll-plain-tan-red.webp",
"species": "icons/environment/people/group.webp",
"profile": "icons/sundries/documents/blueprint-axe.webp",
"path": "icons/sundries/books/book-embossed-gold-red.webp"

View File

@ -43,6 +43,7 @@ export const preloadHandlebarsTemplates = async function () {
"systems/bol/templates/item/parts/properties/feature/fightoption-properties.hbs",
"systems/bol/templates/item/parts/properties/item/weapon-vehicle-properties.hbs",
"systems/bol/templates/item/parts/properties/feature/horoscope-properties.hbs",
"systems/bol/templates/item/parts/properties/feature/xplog-properties.hbs",
// DIALOGS
"systems/bol/templates/chat/rolls/attack-damage-card.hbs",

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000107
MANIFEST-000164

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.430277 7f84f7fff6c0 Recovering log #105
2023/12/04-21:16:34.440834 7f84f7fff6c0 Delete type=3 #103
2023/12/04-21:16:34.440885 7f84f7fff6c0 Delete type=0 #105
2023/12/04-21:29:36.294789 7f84f5ffb6c0 Level-0 table #110: started
2023/12/04-21:29:36.294815 7f84f5ffb6c0 Level-0 table #110: 0 bytes OK
2023/12/04-21:29:36.301173 7f84f5ffb6c0 Delete type=0 #108
2023/12/04-21:29:36.301317 7f84f5ffb6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.301343 7f84f5ffb6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.654494 7f2aeffff6c0 Recovering log #162
2024/01/12-17:58:00.703417 7f2aeffff6c0 Delete type=3 #160
2024/01/12-17:58:00.703506 7f2aeffff6c0 Delete type=0 #162
2024/01/12-18:33:25.126235 7f2aee3ff6c0 Level-0 table #167: started
2024/01/12-18:33:25.126295 7f2aee3ff6c0 Level-0 table #167: 0 bytes OK
2024/01/12-18:33:25.133198 7f2aee3ff6c0 Delete type=0 #165
2024/01/12-18:33:25.139871 7f2aee3ff6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.139923 7f2aee3ff6c0 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,8 @@
2023/10/28-18:46:58.144165 7f5610ff96c0 Recovering log #101
2023/10/28-18:46:58.154293 7f5610ff96c0 Delete type=3 #99
2023/10/28-18:46:58.154395 7f5610ff96c0 Delete type=0 #101
2023/10/28-18:47:32.356263 7f56037fe6c0 Level-0 table #106: started
2023/10/28-18:47:32.356293 7f56037fe6c0 Level-0 table #106: 0 bytes OK
2023/10/28-18:47:32.362824 7f56037fe6c0 Delete type=0 #104
2023/10/28-18:47:32.375967 7f56037fe6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.376034 7f56037fe6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.269402 7f2d849ff6c0 Recovering log #158
2024/01/11-23:52:22.279265 7f2d849ff6c0 Delete type=3 #156
2024/01/11-23:52:22.279317 7f2d849ff6c0 Delete type=0 #158
2024/01/12-17:21:27.002365 7f2aee3ff6c0 Level-0 table #163: started
2024/01/12-17:21:27.002416 7f2aee3ff6c0 Level-0 table #163: 0 bytes OK
2024/01/12-17:21:27.035659 7f2aee3ff6c0 Delete type=0 #161
2024/01/12-17:21:27.068240 7f2aee3ff6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/01/12-17:21:27.068304 7f2aee3ff6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000014
MANIFEST-000070

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.402100 7f84f6ffd6c0 Recovering log #12
2023/12/04-21:16:34.413052 7f84f6ffd6c0 Delete type=3 #10
2023/12/04-21:16:34.413101 7f84f6ffd6c0 Delete type=0 #12
2023/12/04-21:29:36.274254 7f84f5ffb6c0 Level-0 table #17: started
2023/12/04-21:29:36.274306 7f84f5ffb6c0 Level-0 table #17: 0 bytes OK
2023/12/04-21:29:36.281091 7f84f5ffb6c0 Delete type=0 #15
2023/12/04-21:29:36.301284 7f84f5ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.301326 7f84f5ffb6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.559279 7f2aeeffd6c0 Recovering log #68
2024/01/12-17:58:00.603120 7f2aeeffd6c0 Delete type=3 #66
2024/01/12-17:58:00.603243 7f2aeeffd6c0 Delete type=0 #68
2024/01/12-18:33:25.082107 7f2aee3ff6c0 Level-0 table #73: started
2024/01/12-18:33:25.082159 7f2aee3ff6c0 Level-0 table #73: 0 bytes OK
2024/01/12-18:33:25.089101 7f2aee3ff6c0 Delete type=0 #71
2024/01/12-18:33:25.111117 7f2aee3ff6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.111206 7f2aee3ff6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.118619 7f5603fff6c0 Recovering log #8
2023/10/28-18:46:58.129553 7f5603fff6c0 Delete type=3 #6
2023/10/28-18:46:58.129618 7f5603fff6c0 Delete type=0 #8
2023/10/28-18:47:32.323904 7f56037fe6c0 Level-0 table #13: started
2023/10/28-18:47:32.323933 7f56037fe6c0 Level-0 table #13: 0 bytes OK
2023/10/28-18:47:32.329984 7f56037fe6c0 Delete type=0 #11
2023/10/28-18:47:32.349515 7f56037fe6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.349581 7f56037fe6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.245022 7f2aef7fe6c0 Recovering log #64
2024/01/11-23:52:22.255738 7f2aef7fe6c0 Delete type=3 #62
2024/01/11-23:52:22.255808 7f2aef7fe6c0 Delete type=0 #64
2024/01/12-17:21:26.552390 7f2aee3ff6c0 Level-0 table #69: started
2024/01/12-17:21:26.553565 7f2aee3ff6c0 Level-0 table #69: 0 bytes OK
2024/01/12-17:21:26.587319 7f2aee3ff6c0 Delete type=0 #67
2024/01/12-17:21:26.658367 7f2aee3ff6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/01/12-17:21:26.658422 7f2aee3ff6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/boons/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000163

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.244782 7f84f6ffd6c0 Recovering log #104
2023/12/04-21:16:34.255803 7f84f6ffd6c0 Delete type=3 #102
2023/12/04-21:16:34.255859 7f84f6ffd6c0 Delete type=0 #104
2023/12/04-21:29:36.227120 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.227155 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.233490 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.247612 7f84f5ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.247638 7f84f5ffb6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.159080 7f2aeeffd6c0 Recovering log #161
2024/01/12-17:58:00.204717 7f2aeeffd6c0 Delete type=3 #159
2024/01/12-17:58:00.204803 7f2aeeffd6c0 Delete type=0 #161
2024/01/12-18:33:25.003258 7f2aee3ff6c0 Level-0 table #166: started
2024/01/12-18:33:25.003305 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
2024/01/12-18:33:25.009363 7f2aee3ff6c0 Delete type=0 #164
2024/01/12-18:33:25.027341 7f2aee3ff6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.038682 7f2aee3ff6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.021346 7f5603fff6c0 Recovering log #100
2023/10/28-18:46:58.032316 7f5603fff6c0 Delete type=3 #98
2023/10/28-18:46:58.032370 7f5603fff6c0 Delete type=0 #100
2023/10/28-18:47:32.275625 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.275699 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.281755 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.288117 7f56037fe6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.298397 7f56037fe6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.142717 7f2aef7fe6c0 Recovering log #157
2024/01/11-23:52:22.153108 7f2aef7fe6c0 Delete type=3 #155
2024/01/11-23:52:22.153152 7f2aef7fe6c0 Delete type=0 #157
2024/01/12-17:21:26.236099 7f2aee3ff6c0 Level-0 table #162: started
2024/01/12-17:21:26.236153 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
2024/01/12-17:21:26.269940 7f2aee3ff6c0 Delete type=0 #160
2024/01/12-17:21:26.270146 7f2aee3ff6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/01/12-17:21:26.329363 7f2aee3ff6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/boons/MANIFEST-000163 Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000163

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.258787 7f84f77fe6c0 Recovering log #104
2023/12/04-21:16:34.268652 7f84f77fe6c0 Delete type=3 #102
2023/12/04-21:16:34.268705 7f84f77fe6c0 Delete type=0 #104
2023/12/04-21:29:36.233597 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.233621 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.239701 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.247623 7f84f5ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.247651 7f84f5ffb6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.207662 7f2d849ff6c0 Recovering log #161
2024/01/12-17:58:00.250586 7f2d849ff6c0 Delete type=3 #159
2024/01/12-17:58:00.250725 7f2d849ff6c0 Delete type=0 #161
2024/01/12-18:33:25.054071 7f2aee3ff6c0 Level-0 table #166: started
2024/01/12-18:33:25.054116 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
2024/01/12-18:33:25.061185 7f2aee3ff6c0 Delete type=0 #164
2024/01/12-18:33:25.075176 7f2aee3ff6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.081858 7f2aee3ff6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.033991 7f5611ffb6c0 Recovering log #100
2023/10/28-18:46:58.043491 7f5611ffb6c0 Delete type=3 #98
2023/10/28-18:46:58.043553 7f5611ffb6c0 Delete type=0 #100
2023/10/28-18:47:32.281934 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.281973 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.287993 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.298372 7f56037fe6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.298448 7f56037fe6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.156402 7f2aeeffd6c0 Recovering log #157
2024/01/11-23:52:22.165789 7f2aeeffd6c0 Delete type=3 #155
2024/01/11-23:52:22.165838 7f2aeeffd6c0 Delete type=0 #157
2024/01/12-17:21:26.379895 7f2aee3ff6c0 Level-0 table #162: started
2024/01/12-17:21:26.379934 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
2024/01/12-17:21:26.407918 7f2aee3ff6c0 Delete type=0 #160
2024/01/12-17:21:26.472414 7f2aee3ff6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/01/12-17:21:26.510034 7f2aee3ff6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/careers/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000163

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.285844 7f84f67fc6c0 Recovering log #104
2023/12/04-21:16:34.295915 7f84f67fc6c0 Delete type=3 #102
2023/12/04-21:16:34.295974 7f84f67fc6c0 Delete type=0 #104
2023/12/04-21:29:36.267733 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.267761 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.273875 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.274078 7f84f5ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.274142 7f84f5ffb6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.301181 7f2aef7fe6c0 Recovering log #161
2024/01/12-17:58:00.347103 7f2aef7fe6c0 Delete type=3 #159
2024/01/12-17:58:00.347210 7f2aef7fe6c0 Delete type=0 #161
2024/01/12-18:33:25.067972 7f2aee3ff6c0 Level-0 table #166: started
2024/01/12-18:33:25.068005 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
2024/01/12-18:33:25.074990 7f2aee3ff6c0 Delete type=0 #164
2024/01/12-18:33:25.081825 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.081885 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.057967 7f56117fa6c0 Recovering log #100
2023/10/28-18:46:58.068576 7f56117fa6c0 Delete type=3 #98
2023/10/28-18:46:58.068630 7f56117fa6c0 Delete type=0 #100
2023/10/28-18:47:32.298557 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.298612 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.304559 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.323741 7f56037fe6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.323783 7f56037fe6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.180911 7f2aeffff6c0 Recovering log #157
2024/01/11-23:52:22.191351 7f2aeffff6c0 Delete type=3 #155
2024/01/11-23:52:22.191473 7f2aeffff6c0 Delete type=0 #157
2024/01/12-17:21:26.450798 7f2aee3ff6c0 Level-0 table #162: started
2024/01/12-17:21:26.450844 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
2024/01/12-17:21:26.471880 7f2aee3ff6c0 Delete type=0 #160
2024/01/12-17:21:26.510014 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/01/12-17:21:26.510071 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/cartes/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000163

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.444268 7f84f67fc6c0 Recovering log #104
2023/12/04-21:16:34.454337 7f84f67fc6c0 Delete type=3 #102
2023/12/04-21:16:34.454390 7f84f67fc6c0 Delete type=0 #104
2023/12/04-21:29:36.307716 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.307782 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.314556 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.327965 7f84f5ffb6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.328032 7f84f5ffb6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.708420 7f2aef7fe6c0 Recovering log #161
2024/01/12-17:58:00.758343 7f2aef7fe6c0 Delete type=3 #159
2024/01/12-17:58:00.758928 7f2aef7fe6c0 Delete type=0 #161
2024/01/12-18:33:25.133341 7f2aee3ff6c0 Level-0 table #166: started
2024/01/12-18:33:25.133378 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
2024/01/12-18:33:25.139690 7f2aee3ff6c0 Delete type=0 #164
2024/01/12-18:33:25.139886 7f2aee3ff6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.139935 7f2aee3ff6c0 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 @@
2023/10/28-18:46:58.157567 7f56117fa6c0 Recovering log #100
2023/10/28-18:46:58.168362 7f56117fa6c0 Delete type=3 #98
2023/10/28-18:46:58.168445 7f56117fa6c0 Delete type=0 #100
2023/10/28-18:47:32.362933 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.362962 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.369115 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.375986 7f56037fe6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.376049 7f56037fe6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.282439 7f2aeffff6c0 Recovering log #157
2024/01/11-23:52:22.293099 7f2aeffff6c0 Delete type=3 #155
2024/01/11-23:52:22.293221 7f2aeffff6c0 Delete type=0 #157
2024/01/12-17:21:26.685395 7f2aee3ff6c0 Level-0 table #162: started
2024/01/12-17:21:26.685435 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
2024/01/12-17:21:26.712975 7f2aee3ff6c0 Delete type=0 #160
2024/01/12-17:21:26.786099 7f2aee3ff6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
2024/01/12-17:21:26.786181 7f2aee3ff6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/creatures/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000163

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.555441 7f84f77fe6c0 Recovering log #104
2023/12/04-21:16:34.566877 7f84f77fe6c0 Delete type=3 #102
2023/12/04-21:16:34.566941 7f84f77fe6c0 Delete type=0 #104
2023/12/04-21:29:36.355366 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.355392 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.362705 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.362912 7f84f5ffb6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.362955 7f84f5ffb6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/01/12-17:58:01.104161 7f2d849ff6c0 Recovering log #161
2024/01/12-17:58:01.153283 7f2d849ff6c0 Delete type=3 #159
2024/01/12-17:58:01.153485 7f2d849ff6c0 Delete type=0 #161
2024/01/12-18:33:25.169822 7f2aee3ff6c0 Level-0 table #166: started
2024/01/12-18:33:25.169874 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
2024/01/12-18:33:25.176198 7f2aee3ff6c0 Delete type=0 #164
2024/01/12-18:33:25.199264 7f2aee3ff6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.199362 7f2aee3ff6c0 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,8 @@
2023/10/28-18:46:58.256101 7f5611ffb6c0 Recovering log #100
2023/10/28-18:46:58.266925 7f5611ffb6c0 Delete type=3 #98
2023/10/28-18:46:58.267031 7f5611ffb6c0 Delete type=0 #100
2023/10/28-18:47:32.403078 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.403107 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.410392 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.416800 7f56037fe6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.416838 7f56037fe6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.387799 7f2aeeffd6c0 Recovering log #157
2024/01/11-23:52:22.398078 7f2aeeffd6c0 Delete type=3 #155
2024/01/11-23:52:22.398208 7f2aeeffd6c0 Delete type=0 #157
2024/01/12-17:21:26.929290 7f2aee3ff6c0 Level-0 table #162: started
2024/01/12-17:21:26.929361 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
2024/01/12-17:21:26.964576 7f2aee3ff6c0 Delete type=0 #160
2024/01/12-17:21:27.068192 7f2aee3ff6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
2024/01/12-17:21:27.068263 7f2aee3ff6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000162

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.543411 7f84f6ffd6c0 Recovering log #104
2023/12/04-21:16:34.553517 7f84f6ffd6c0 Delete type=3 #102
2023/12/04-21:16:34.553574 7f84f6ffd6c0 Delete type=0 #104
2023/12/04-21:29:36.348547 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.348582 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.355093 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.355262 7f84f5ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.355296 7f84f5ffb6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/01/12-17:58:01.054556 7f2aeeffd6c0 Recovering log #160
2024/01/12-17:58:01.101242 7f2aeeffd6c0 Delete type=3 #158
2024/01/12-17:58:01.101327 7f2aeeffd6c0 Delete type=0 #160
2024/01/12-18:33:25.184427 7f2aee3ff6c0 Level-0 table #165: started
2024/01/12-18:33:25.184480 7f2aee3ff6c0 Level-0 table #165: 0 bytes OK
2024/01/12-18:33:25.191074 7f2aee3ff6c0 Delete type=0 #163
2024/01/12-18:33:25.199320 7f2aee3ff6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.199403 7f2aee3ff6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.244978 7f5603fff6c0 Recovering log #100
2023/10/28-18:46:58.254318 7f5603fff6c0 Delete type=3 #98
2023/10/28-18:46:58.254370 7f5603fff6c0 Delete type=0 #100
2023/10/28-18:47:32.410495 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.410517 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.416657 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.416814 7f56037fe6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.416846 7f56037fe6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.375443 7f2aef7fe6c0 Recovering log #156
2024/01/11-23:52:22.385423 7f2aef7fe6c0 Delete type=3 #154
2024/01/11-23:52:22.385520 7f2aef7fe6c0 Delete type=0 #156
2024/01/12-17:21:26.964789 7f2aee3ff6c0 Level-0 table #161: started
2024/01/12-17:21:26.964843 7f2aee3ff6c0 Level-0 table #161: 0 bytes OK
2024/01/12-17:21:27.002161 7f2aee3ff6c0 Delete type=0 #159
2024/01/12-17:21:27.068219 7f2aee3ff6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/01/12-17:21:27.068283 7f2aee3ff6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000108
MANIFEST-000164

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.326886 7f84f7fff6c0 Recovering log #106
2023/12/04-21:16:34.337231 7f84f7fff6c0 Delete type=3 #104
2023/12/04-21:16:34.337341 7f84f7fff6c0 Delete type=0 #106
2023/12/04-21:29:36.247774 7f84f5ffb6c0 Level-0 table #111: started
2023/12/04-21:29:36.247806 7f84f5ffb6c0 Level-0 table #111: 0 bytes OK
2023/12/04-21:29:36.253805 7f84f5ffb6c0 Delete type=0 #109
2023/12/04-21:29:36.274024 7f84f5ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.274096 7f84f5ffb6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.455820 7f2aeffff6c0 Recovering log #162
2024/01/12-17:58:00.511511 7f2aeffff6c0 Delete type=3 #160
2024/01/12-17:58:00.511604 7f2aeffff6c0 Delete type=0 #162
2024/01/12-18:33:25.096428 7f2aee3ff6c0 Level-0 table #167: started
2024/01/12-18:33:25.096474 7f2aee3ff6c0 Level-0 table #167: 0 bytes OK
2024/01/12-18:33:25.102831 7f2aee3ff6c0 Delete type=0 #165
2024/01/12-18:33:25.111155 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.111193 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.094686 7f5610ff96c0 Recovering log #102
2023/10/28-18:46:58.104878 7f5610ff96c0 Delete type=3 #100
2023/10/28-18:46:58.104944 7f5610ff96c0 Delete type=0 #102
2023/10/28-18:47:32.336166 7f56037fe6c0 Level-0 table #107: started
2023/10/28-18:47:32.336197 7f56037fe6c0 Level-0 table #107: 0 bytes OK
2023/10/28-18:47:32.342982 7f56037fe6c0 Delete type=0 #105
2023/10/28-18:47:32.349554 7f56037fe6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.349606 7f56037fe6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.220063 7f2d849ff6c0 Recovering log #158
2024/01/11-23:52:22.229888 7f2d849ff6c0 Delete type=3 #156
2024/01/11-23:52:22.230000 7f2d849ff6c0 Delete type=0 #158
2024/01/12-17:21:26.616976 7f2aee3ff6c0 Level-0 table #163: started
2024/01/12-17:21:26.617027 7f2aee3ff6c0 Level-0 table #163: 0 bytes OK
2024/01/12-17:21:26.658165 7f2aee3ff6c0 Delete type=0 #161
2024/01/12-17:21:26.658399 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/01/12-17:21:26.658448 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000162

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.503638 7f84f77fe6c0 Recovering log #104
2023/12/04-21:16:34.513495 7f84f77fe6c0 Delete type=3 #102
2023/12/04-21:16:34.513540 7f84f77fe6c0 Delete type=0 #104
2023/12/04-21:29:36.328177 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.328221 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.334799 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.355226 7f84f5ffb6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.355270 7f84f5ffb6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.918780 7f2d849ff6c0 Recovering log #160
2024/01/12-17:58:00.957088 7f2d849ff6c0 Delete type=3 #158
2024/01/12-17:58:00.957195 7f2d849ff6c0 Delete type=0 #160
2024/01/12-18:33:25.147904 7f2aee3ff6c0 Level-0 table #165: started
2024/01/12-18:33:25.147965 7f2aee3ff6c0 Level-0 table #165: 0 bytes OK
2024/01/12-18:33:25.154391 7f2aee3ff6c0 Delete type=0 #163
2024/01/12-18:33:25.169583 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.169641 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.208291 7f5611ffb6c0 Recovering log #100
2023/10/28-18:46:58.217629 7f5611ffb6c0 Delete type=3 #98
2023/10/28-18:46:58.217715 7f5611ffb6c0 Delete type=0 #100
2023/10/28-18:47:32.376126 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.376155 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.382230 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.402910 7f56037fe6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.402958 7f56037fe6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.335396 7f2aeeffd6c0 Recovering log #156
2024/01/11-23:52:22.346449 7f2aeeffd6c0 Delete type=3 #154
2024/01/11-23:52:22.346560 7f2aeeffd6c0 Delete type=0 #156
2024/01/12-17:21:26.786343 7f2aee3ff6c0 Level-0 table #161: started
2024/01/12-17:21:26.790645 7f2aee3ff6c0 Level-0 table #161: 0 bytes OK
2024/01/12-17:21:26.827682 7f2aee3ff6c0 Delete type=0 #159
2024/01/12-17:21:26.928985 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/01/12-17:21:26.929106 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/flaws/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000163

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.270727 7f84f7fff6c0 Recovering log #104
2023/12/04-21:16:34.281382 7f84f7fff6c0 Delete type=3 #102
2023/12/04-21:16:34.281438 7f84f7fff6c0 Delete type=0 #104
2023/12/04-21:29:36.239869 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.239936 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.247503 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.247631 7f84f5ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.247645 7f84f5ffb6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.253802 7f2aeffff6c0 Recovering log #161
2024/01/12-17:58:00.296898 7f2aeffff6c0 Delete type=3 #159
2024/01/12-17:58:00.297475 7f2aeffff6c0 Delete type=0 #161
2024/01/12-18:33:25.061352 7f2aee3ff6c0 Level-0 table #166: started
2024/01/12-18:33:25.061404 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
2024/01/12-18:33:25.067829 7f2aee3ff6c0 Delete type=0 #164
2024/01/12-18:33:25.075201 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.081844 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.045402 7f5610ff96c0 Recovering log #100
2023/10/28-18:46:58.055825 7f5610ff96c0 Delete type=3 #98
2023/10/28-18:46:58.055884 7f5610ff96c0 Delete type=0 #100
2023/10/28-18:47:32.304647 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.304672 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.310534 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.323755 7f56037fe6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.323793 7f56037fe6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.167689 7f2d849ff6c0 Recovering log #157
2024/01/11-23:52:22.178189 7f2d849ff6c0 Delete type=3 #155
2024/01/11-23:52:22.178233 7f2d849ff6c0 Delete type=0 #157
2024/01/12-17:21:26.408071 7f2aee3ff6c0 Level-0 table #162: started
2024/01/12-17:21:26.408107 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
2024/01/12-17:21:26.450569 7f2aee3ff6c0 Delete type=0 #160
2024/01/12-17:21:26.472440 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/01/12-17:21:26.510048 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/flaws/MANIFEST-000163 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/godsfaith/000122.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000106
MANIFEST-000163

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.491249 7f84f6ffd6c0 Recovering log #104
2023/12/04-21:16:34.501377 7f84f6ffd6c0 Delete type=3 #102
2023/12/04-21:16:34.501432 7f84f6ffd6c0 Delete type=0 #104
2023/12/04-21:29:36.314691 7f84f5ffb6c0 Level-0 table #109: started
2023/12/04-21:29:36.314743 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
2023/12/04-21:29:36.320934 7f84f5ffb6c0 Delete type=0 #107
2023/12/04-21:29:36.327985 7f84f5ffb6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.328049 7f84f5ffb6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.866994 7f2aeeffd6c0 Recovering log #161
2024/01/12-17:58:00.914618 7f2aeeffd6c0 Delete type=3 #159
2024/01/12-17:58:00.914708 7f2aeeffd6c0 Delete type=0 #161
2024/01/12-18:33:25.154621 7f2aee3ff6c0 Level-0 table #166: started
2024/01/12-18:33:25.154680 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
2024/01/12-18:33:25.161613 7f2aee3ff6c0 Delete type=0 #164
2024/01/12-18:33:25.169596 7f2aee3ff6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.169665 7f2aee3ff6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/28-18:46:58.196427 7f5603fff6c0 Recovering log #100
2023/10/28-18:46:58.206941 7f5603fff6c0 Delete type=3 #98
2023/10/28-18:46:58.206995 7f5603fff6c0 Delete type=0 #100
2023/10/28-18:47:32.382372 7f56037fe6c0 Level-0 table #105: started
2023/10/28-18:47:32.382414 7f56037fe6c0 Level-0 table #105: 0 bytes OK
2023/10/28-18:47:32.388955 7f56037fe6c0 Delete type=0 #103
2023/10/28-18:47:32.402925 7f56037fe6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2023/10/28-18:47:32.402968 7f56037fe6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/01/11-23:52:22.322553 7f2aef7fe6c0 Recovering log #157
2024/01/11-23:52:22.332811 7f2aef7fe6c0 Delete type=3 #155
2024/01/11-23:52:22.332913 7f2aef7fe6c0 Delete type=0 #157
2024/01/12-17:21:26.827883 7f2aee3ff6c0 Level-0 table #162: started
2024/01/12-17:21:26.827940 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
2024/01/12-17:21:26.873780 7f2aee3ff6c0 Delete type=0 #160
2024/01/12-17:21:26.929014 7f2aee3ff6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/01/12-17:21:26.929127 7f2aee3ff6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000107
MANIFEST-000163

View File

@ -1,8 +1,8 @@
2023/12/04-21:16:34.463477 7f84f7fff6c0 Recovering log #105
2023/12/04-21:16:34.473557 7f84f7fff6c0 Delete type=3 #103
2023/12/04-21:16:34.473612 7f84f7fff6c0 Delete type=0 #105
2023/12/04-21:29:36.301429 7f84f5ffb6c0 Level-0 table #110: started
2023/12/04-21:29:36.301456 7f84f5ffb6c0 Level-0 table #110: 0 bytes OK
2023/12/04-21:29:36.307489 7f84f5ffb6c0 Delete type=0 #108
2023/12/04-21:29:36.327942 7f84f5ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2023/12/04-21:29:36.328016 7f84f5ffb6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/01/12-17:58:00.767444 7f2aeffff6c0 Recovering log #161
2024/01/12-17:58:00.817424 7f2aeffff6c0 Delete type=3 #159
2024/01/12-17:58:00.817537 7f2aeffff6c0 Delete type=0 #161
2024/01/12-18:33:25.118054 7f2aee3ff6c0 Level-0 table #166: started
2024/01/12-18:33:25.118116 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
2024/01/12-18:33:25.126051 7f2aee3ff6c0 Delete type=0 #164
2024/01/12-18:33:25.139855 7f2aee3ff6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/01/12-18:33:25.139911 7f2aee3ff6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

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