v10/v11 compat

This commit is contained in:
LeRatierBretonnien 2023-05-29 08:38:22 +02:00
parent 4d40e2fe59
commit ad37ee1b8e
165 changed files with 552 additions and 550 deletions

View File

@ -1,54 +1,56 @@
{
"ACTOR": {
"TypePersonnage": "Personnage",
"TypeCreature": "Créature",
"TypeEntite": "Entité de cauchemar",
"TypeCommerce": "Commerce",
"TypeVehicule": "Véhicule"
},
"ITEM": {
"TypeArme": "Arme",
"TypeArmure": "Armure",
"TypeBlessure": "Blessure",
"TypeCasetmr": "TMR spéciale",
"TypeChant": "Chant",
"TypeCompetence": "Compétence",
"TypeCompetencecreature": "Compétence de créature",
"TypeConteneur": "Conteneur",
"TypeDanse": "Danse",
"TypeExtraitpoetique": "Extrait poetique",
"TypeFaune": "Faune",
"TypeGemme": "Gemme",
"TypeHerbe": "Herbe",
"TypeIngredient": "Ingrédient",
"TypeJeu": "Jeu",
"TypeLivre": "Livre",
"TypeMaladie": "Maladie",
"TypeMeditation": "Méditation",
"TypeMonnaie": "Monnaie",
"TypeMunition": "Munition",
"TypeMusique": "Musique",
"TypeNombreastral": "Nombre astral",
"TypeNourritureboisson": "Nourriture & boisson",
"TypeObjet": "Objet",
"TypeOeuvre": "Oeuvre",
"TypeOmbre": "Ombre de Thanatos",
"TypePlante": "Plante",
"TypePoison": "Poison",
"TypePossession": "Possession",
"TypePotion": "Potion",
"TypeQueue": "Queue de Dragon",
"TypeRecettealchimique": "Recette alchimique",
"TypeRecettecuisine": "Recette de cuisine",
"TypeRencontre": "Rencontre TMR",
"TypeService": "Service",
"TypeSignedraconique": "Signe draconique",
"TypeSort": "Sort",
"TypeSortreserve": "Sort en réserve",
"TypeSouffle": "Souffle de Dragon",
"TypeTache": "Tâche",
"TypeTarot": "Carte de tarot",
"TypeTete": "Tête de Dragon"
"TYPES": {
"Actor": {
"Personnage": "Personnage",
"Creature": "Créature",
"Entite": "Entité de cauchemar",
"Commerce": "Commerce",
"Vehicule": "Véhicule"
},
"Item": {
"Arme": "Arme",
"Armure": "Armure",
"Blessure": "Blessure",
"Casetmr": "TMR spéciale",
"Chant": "Chant",
"Competence": "Compétence",
"Competencecreature": "Compétence de créature",
"Conteneur": "Conteneur",
"Danse": "Danse",
"Extraitpoetique": "Extrait poetique",
"Faune": "Faune",
"Gemme": "Gemme",
"Herbe": "Herbe",
"Ingredient": "Ingrédient",
"Jeu": "Jeu",
"Livre": "Livre",
"Maladie": "Maladie",
"Meditation": "Méditation",
"Monnaie": "Monnaie",
"Munition": "Munition",
"Musique": "Musique",
"Nombreastral": "Nombre astral",
"Nourritureboisson": "Nourriture & boisson",
"Objet": "Objet",
"Oeuvre": "Oeuvre",
"Ombre": "Ombre de Thanatos",
"Plante": "Plante",
"Poison": "Poison",
"Possession": "Possession",
"Potion": "Potion",
"Queue": "Queue de Dragon",
"Recettealchimique": "Recette alchimique",
"Recettecuisine": "Recette de cuisine",
"Rencontre": "Rencontre TMR",
"Service": "Service",
"Signedraconique": "Signe draconique",
"Sort": "Sort",
"Sortreserve": "Sort en réserve",
"Souffle": "Souffle de Dragon",
"Tache": "Tâche",
"Tarot": "Carte de tarot",
"Tete": "Tête de Dragon"
}
},
"EFFECT": {
"StatusStunned": "Sonné",

View File

@ -102,7 +102,6 @@ export class RdDTMRDialog extends Dialog {
/* -------------------------------------------- */
createPixiSprites() {
console.log("Create sprite")
EffetsDraconiques.carteTmr.createSprite(this.pixiTMR);
this.updateTokens();
this.forceDemiRevePositionView();

View File

@ -1,4 +1,5 @@
import { Draconique } from "./draconique.js";
import { PixiTMR } from "./pixi-tmr.js";
export class CarteTmr extends Draconique {
@ -16,7 +17,6 @@ export class CarteTmr extends Draconique {
img() { return 'systems/foundryvtt-reve-de-dragon/styles/img/ui/tmp_main_r1.webp' }
createSprite(pixiTMR) {
console.log("Sprite create!!!!")
return pixiTMR.carteTmr(this.code());
}
}

View File

@ -91,6 +91,8 @@ export class Draconique {
coordTMR: coordTMR
};
token[type ?? this.code()] = linkData;
console.log("SPRITE: ", token.sprite)
//PixiTMR.getImgFromCode()
pixiTMR.addTooltip(token.sprite, this.tooltip(linkData));
return token;
}

View File

@ -21,23 +21,19 @@ export class PixiTMR {
}
async load( onLoad = (loader, resources) => {} ) {
// WIP è- Deprecated since v7 : let loader = new PIXI.Loader();
// WIP - Deprecated since v7 : let loader = new PIXI.Loader();
for (const [name, img] of Object.entries(PixiTMR.textures)) {
const texture = await PIXI.Assets.load(img);
let image = PIXI.Sprite.from(texture);
}
console.log(">>>>>>>>>>>>>< ALL TEXTURE LOADED")
//onLoad(loader, resources); ??
for (let onAnimate of this.callbacksOnAnimate) { //??
onAnimate();
onLoad();
for (let onAnimate of this.callbacksOnAnimate) {
onAnimate();
}
//loader.onError.add((error, reason) => { console.log("ERROR", error, reason) });
/*loader.load( (loader, resources) => {
onLoad(loader, resources);
for (let onAnimate of this.callbacksOnAnimate) {
onAnimate();
}
});*/
}
static getImgFromCode(code) {
return PixiTMR.textures[code]
}
static register(name, img) {
@ -50,8 +46,8 @@ export class PixiTMR {
}
carteTmr(code) {
console.log(code)
const carteTmr = new PIXI.Sprite(PIXI.utils.TextureCache[code]);
let img = PixiTMR.getImgFromCode(code)
const carteTmr = new PIXI.Sprite(PIXI.utils.TextureCache[img]);
console.log(code, carteTmr)
// Setup the position of the TMR
carteTmr.x = 0;
@ -60,7 +56,8 @@ export class PixiTMR {
carteTmr.height = 860;
// Rotate around the center
carteTmr.anchor.set(0);
carteTmr.interactive = true;
carteTmr.eventMode = 'dynamic'; // PIXI 7 : Not sure ..
// This one is deprecated ; carteTmr.interactive = true;
carteTmr.buttonMode = true;
carteTmr.tmrObject = this;
if (!this.tmrObject.viewOnly) {
@ -71,9 +68,10 @@ export class PixiTMR {
}
sprite(code, options = {}) {
const texture = PIXI.utils.TextureCache[code];
let img = PixiTMR.getImgFromCode(code)
const texture = PIXI.utils.TextureCache[img];
if (!texture) {
console.error("Texture manquante", code)
console.error("Texture manquante", code, PIXI.utils.TextureCache)
return;
}
let sprite = new PIXI.Sprite(texture);
@ -105,7 +103,8 @@ export class PixiTMR {
sprite.tooltip = new PIXI.Text(text, tooltipStyle);
sprite.tooltip.zIndex = tmrTokenZIndex.tooltip;
sprite.isOver = false;
sprite.interactive = true;
// Deprecated : sprite.interactive = true;
sprite.eventMode = 'dynamic'; // PIXI 7 To be checked
sprite.on('pointerdown', event => this.onClickBackground(event))
.on('pointerover', () => this.onShowTooltip(sprite))
.on('pointerout', () => this.onHideTooltip(sprite));

View File

@ -1 +1 @@
MANIFEST-000037
MANIFEST-000041

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:46.859515 7eff54df96c0 Recovering log #35
2023/05/25-21:15:47.144160 7eff54df96c0 Delete type=3 #33
2023/05/25-21:15:47.144202 7eff54df96c0 Delete type=0 #35
2023/05/25-21:16:28.074872 7eff4effd6c0 Level-0 table #40: started
2023/05/25-21:16:28.074900 7eff4effd6c0 Level-0 table #40: 0 bytes OK
2023/05/25-21:16:28.082798 7eff4effd6c0 Delete type=0 #38
2023/05/25-21:16:28.096215 7eff4effd6c0 Manual compaction at level-0 from '!actors!0ogeNTXl7IwYfWZR' @ 72057594037927935 : 1 .. '!actors.items!zMvyRrp10dkfcS43.shsUV8UpU18c0RJK' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.697935 7fca067fc6c0 Recovering log #39
2023/05/29-08:00:37.713407 7fca067fc6c0 Delete type=3 #37
2023/05/29-08:00:37.713452 7fca067fc6c0 Delete type=0 #39
2023/05/29-08:38:02.219865 7fca04ff96c0 Level-0 table #44: started
2023/05/29-08:38:02.219887 7fca04ff96c0 Level-0 table #44: 0 bytes OK
2023/05/29-08:38:02.226757 7fca04ff96c0 Delete type=0 #42
2023/05/29-08:38:02.239623 7fca04ff96c0 Manual compaction at level-0 from '!actors!0ogeNTXl7IwYfWZR' @ 72057594037927935 : 1 .. '!actors.items!zMvyRrp10dkfcS43.shsUV8UpU18c0RJK' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.526280 7eff4ffff6c0 Recovering log #31
2023/05/25-21:13:49.542732 7eff4ffff6c0 Delete type=3 #29
2023/05/25-21:13:49.542808 7eff4ffff6c0 Delete type=0 #31
2023/05/25-21:14:49.161341 7eff4effd6c0 Level-0 table #36: started
2023/05/25-21:14:49.161369 7eff4effd6c0 Level-0 table #36: 0 bytes OK
2023/05/25-21:14:49.169202 7eff4effd6c0 Delete type=0 #34
2023/05/25-21:14:49.175547 7eff4effd6c0 Manual compaction at level-0 from '!actors!0ogeNTXl7IwYfWZR' @ 72057594037927935 : 1 .. '!actors.items!zMvyRrp10dkfcS43.shsUV8UpU18c0RJK' @ 0 : 0; will stop at (end)
2023/05/25-21:15:46.859515 7eff54df96c0 Recovering log #35
2023/05/25-21:15:47.144160 7eff54df96c0 Delete type=3 #33
2023/05/25-21:15:47.144202 7eff54df96c0 Delete type=0 #35
2023/05/25-21:16:28.074872 7eff4effd6c0 Level-0 table #40: started
2023/05/25-21:16:28.074900 7eff4effd6c0 Level-0 table #40: 0 bytes OK
2023/05/25-21:16:28.082798 7eff4effd6c0 Delete type=0 #38
2023/05/25-21:16:28.096215 7eff4effd6c0 Manual compaction at level-0 from '!actors!0ogeNTXl7IwYfWZR' @ 72057594037927935 : 1 .. '!actors.items!zMvyRrp10dkfcS43.shsUV8UpU18c0RJK' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:47.167666 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:47.246514 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:47.246578 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:28.096321 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.096342 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.102434 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.123279 7eff4effd6c0 Manual compaction at level-0 from '!actors!1Nng9d8r6lrPHCaJ' @ 72057594037927935 : 1 .. '!actors.items!ryUZTa17LzNv25UY.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.736173 7fca05ffb6c0 Recovering log #38
2023/05/29-08:00:37.750924 7fca05ffb6c0 Delete type=3 #36
2023/05/29-08:00:37.750965 7fca05ffb6c0 Delete type=0 #38
2023/05/29-08:38:02.239711 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.239732 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.246710 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.253050 7fca04ff96c0 Manual compaction at level-0 from '!actors!1Nng9d8r6lrPHCaJ' @ 72057594037927935 : 1 .. '!actors.items!ryUZTa17LzNv25UY.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.550037 7eff54df96c0 Recovering log #30
2023/05/25-21:13:49.567733 7eff54df96c0 Delete type=3 #28
2023/05/25-21:13:49.567804 7eff54df96c0 Delete type=0 #30
2023/05/25-21:14:49.169336 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.169374 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.175479 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.175571 7eff4effd6c0 Manual compaction at level-0 from '!actors!1Nng9d8r6lrPHCaJ' @ 72057594037927935 : 1 .. '!actors.items!ryUZTa17LzNv25UY.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)
2023/05/25-21:15:47.167666 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:47.246514 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:47.246578 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:28.096321 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.096342 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.102434 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.123279 7eff4effd6c0 Manual compaction at level-0 from '!actors!1Nng9d8r6lrPHCaJ' @ 72057594037927935 : 1 .. '!actors.items!ryUZTa17LzNv25UY.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:45.816346 7eff54df96c0 Recovering log #34
2023/05/25-21:15:45.886035 7eff54df96c0 Delete type=3 #32
2023/05/25-21:15:45.886091 7eff54df96c0 Delete type=0 #34
2023/05/25-21:16:27.903408 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.903446 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.910249 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:27.927858 7eff4effd6c0 Manual compaction at level-0 from '!items!240HPtZsgZQERFMF' @ 72057594037927935 : 1 .. '!items!zRQ5WnPI483CKm9Q' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.527199 7fca057fa6c0 Recovering log #38
2023/05/29-08:00:37.537455 7fca057fa6c0 Delete type=3 #36
2023/05/29-08:00:37.537507 7fca057fa6c0 Delete type=0 #38
2023/05/29-08:38:02.086958 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.086980 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.093744 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.107101 7fca04ff96c0 Manual compaction at level-0 from '!items!240HPtZsgZQERFMF' @ 72057594037927935 : 1 .. '!items!zRQ5WnPI483CKm9Q' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.334880 7eff4f7fe6c0 Recovering log #30
2023/05/25-21:13:49.352313 7eff4f7fe6c0 Delete type=3 #28
2023/05/25-21:13:49.352366 7eff4f7fe6c0 Delete type=0 #30
2023/05/25-21:14:49.005326 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.005355 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.011800 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.032216 7eff4effd6c0 Manual compaction at level-0 from '!items!240HPtZsgZQERFMF' @ 72057594037927935 : 1 .. '!items!zRQ5WnPI483CKm9Q' @ 0 : 0; will stop at (end)
2023/05/25-21:15:45.816346 7eff54df96c0 Recovering log #34
2023/05/25-21:15:45.886035 7eff54df96c0 Delete type=3 #32
2023/05/25-21:15:45.886091 7eff54df96c0 Delete type=0 #34
2023/05/25-21:16:27.903408 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.903446 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.910249 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:27.927858 7eff4effd6c0 Manual compaction at level-0 from '!items!240HPtZsgZQERFMF' @ 72057594037927935 : 1 .. '!items!zRQ5WnPI483CKm9Q' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:45.816350 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:45.886035 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:45.886091 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:27.890193 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.890264 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.896856 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:27.927811 7eff4effd6c0 Manual compaction at level-0 from '!items!0zRL8bOpCXNQnIR4' @ 72057594037927935 : 1 .. '!items!yDHZfK4RmwQW4YaW' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.527196 7fca05ffb6c0 Recovering log #38
2023/05/29-08:00:37.537511 7fca05ffb6c0 Delete type=3 #36
2023/05/29-08:00:37.537612 7fca05ffb6c0 Delete type=0 #38
2023/05/29-08:38:02.093873 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.093898 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.100659 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.114114 7fca04ff96c0 Manual compaction at level-0 from '!items!0zRL8bOpCXNQnIR4' @ 72057594037927935 : 1 .. '!items!yDHZfK4RmwQW4YaW' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.338086 7eff4ffff6c0 Recovering log #30
2023/05/25-21:13:49.355270 7eff4ffff6c0 Delete type=3 #28
2023/05/25-21:13:49.355309 7eff4ffff6c0 Delete type=0 #30
2023/05/25-21:14:49.011943 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.011979 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.018157 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.032231 7eff4effd6c0 Manual compaction at level-0 from '!items!0zRL8bOpCXNQnIR4' @ 72057594037927935 : 1 .. '!items!yDHZfK4RmwQW4YaW' @ 0 : 0; will stop at (end)
2023/05/25-21:15:45.816350 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:45.886035 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:45.886091 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:27.890193 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.890264 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.896856 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:27.927811 7eff4effd6c0 Manual compaction at level-0 from '!items!0zRL8bOpCXNQnIR4' @ 72057594037927935 : 1 .. '!items!yDHZfK4RmwQW4YaW' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:45.889800 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:45.956555 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:45.956598 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:27.910386 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.910424 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.927592 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:27.927877 7eff4effd6c0 Manual compaction at level-0 from '!items!0Ms9iKxqigNNpZEx' @ 72057594037927935 : 1 .. '!items!wDHR5UHWq568lfGa' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.541075 7fca06ffd6c0 Recovering log #38
2023/05/29-08:00:37.554609 7fca06ffd6c0 Delete type=3 #36
2023/05/29-08:00:37.554667 7fca06ffd6c0 Delete type=0 #38
2023/05/29-08:38:02.100767 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.100800 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.107003 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.114130 7fca04ff96c0 Manual compaction at level-0 from '!items!0Ms9iKxqigNNpZEx' @ 72057594037927935 : 1 .. '!items!wDHR5UHWq568lfGa' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.353871 7eff54df96c0 Recovering log #30
2023/05/25-21:13:49.370865 7eff54df96c0 Delete type=3 #28
2023/05/25-21:13:49.370905 7eff54df96c0 Delete type=0 #30
2023/05/25-21:14:49.018267 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.018312 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.025788 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.032244 7eff4effd6c0 Manual compaction at level-0 from '!items!0Ms9iKxqigNNpZEx' @ 72057594037927935 : 1 .. '!items!wDHR5UHWq568lfGa' @ 0 : 0; will stop at (end)
2023/05/25-21:15:45.889800 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:45.956555 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:45.956598 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:27.910386 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.910424 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.927592 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:27.927877 7eff4effd6c0 Manual compaction at level-0 from '!items!0Ms9iKxqigNNpZEx' @ 72057594037927935 : 1 .. '!items!wDHR5UHWq568lfGa' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:45.694840 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:45.812007 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:45.812080 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:27.897012 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.897054 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.903071 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:27.927839 7eff4effd6c0 Manual compaction at level-0 from '!items!2JLK5e97WbTM5WxX' @ 72057594037927935 : 1 .. '!items!zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.513847 7fca057fa6c0 Recovering log #38
2023/05/29-08:00:37.523914 7fca057fa6c0 Delete type=3 #36
2023/05/29-08:00:37.524000 7fca057fa6c0 Delete type=0 #38
2023/05/29-08:38:02.080652 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.080678 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.086831 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.093863 7fca04ff96c0 Manual compaction at level-0 from '!items!2JLK5e97WbTM5WxX' @ 72057594037927935 : 1 .. '!items!zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.317456 7eff555fa6c0 Recovering log #30
2023/05/25-21:13:49.336236 7eff555fa6c0 Delete type=3 #28
2023/05/25-21:13:49.336293 7eff555fa6c0 Delete type=0 #30
2023/05/25-21:14:48.998447 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:48.998484 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.004975 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.005161 7eff4effd6c0 Manual compaction at level-0 from '!items!2JLK5e97WbTM5WxX' @ 72057594037927935 : 1 .. '!items!zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)
2023/05/25-21:15:45.694840 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:45.812007 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:45.812080 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:27.897012 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.897054 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.903071 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:27.927839 7eff4effd6c0 Manual compaction at level-0 from '!items!2JLK5e97WbTM5WxX' @ 72057594037927935 : 1 .. '!items!zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:47.252519 7eff555fa6c0 Recovering log #34
2023/05/25-21:15:47.361846 7eff555fa6c0 Delete type=3 #32
2023/05/25-21:15:47.361902 7eff555fa6c0 Delete type=0 #34
2023/05/25-21:16:28.115605 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.115625 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.123123 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.123337 7eff4effd6c0 Manual compaction at level-0 from '!actors!47YUryMgpq1UnLuB' @ 72057594037927935 : 1 .. '!actors.items!xngqS9HtwWOLf3Vo.iwfr7ekbLFzDCayP' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.761434 7fca057fa6c0 Recovering log #38
2023/05/29-08:00:37.772054 7fca057fa6c0 Delete type=3 #36
2023/05/29-08:00:37.772100 7fca057fa6c0 Delete type=0 #38
2023/05/29-08:38:02.253059 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.253083 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.259989 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.273930 7fca04ff96c0 Manual compaction at level-0 from '!actors!47YUryMgpq1UnLuB' @ 72057594037927935 : 1 .. '!actors.items!xngqS9HtwWOLf3Vo.iwfr7ekbLFzDCayP' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.575256 7eff555fa6c0 Recovering log #30
2023/05/25-21:13:49.588359 7eff555fa6c0 Delete type=3 #28
2023/05/25-21:13:49.588405 7eff555fa6c0 Delete type=0 #30
2023/05/25-21:14:49.182654 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.182674 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.189235 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.202815 7eff4effd6c0 Manual compaction at level-0 from '!actors!47YUryMgpq1UnLuB' @ 72057594037927935 : 1 .. '!actors.items!xngqS9HtwWOLf3Vo.iwfr7ekbLFzDCayP' @ 0 : 0; will stop at (end)
2023/05/25-21:15:47.252519 7eff555fa6c0 Recovering log #34
2023/05/25-21:15:47.361846 7eff555fa6c0 Delete type=3 #32
2023/05/25-21:15:47.361902 7eff555fa6c0 Delete type=0 #34
2023/05/25-21:16:28.115605 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.115625 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.123123 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.123337 7eff4effd6c0 Manual compaction at level-0 from '!actors!47YUryMgpq1UnLuB' @ 72057594037927935 : 1 .. '!actors.items!xngqS9HtwWOLf3Vo.iwfr7ekbLFzDCayP' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:46.097841 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:46.206693 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:46.206735 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:27.959815 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.959890 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.966670 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.006880 7eff4effd6c0 Manual compaction at level-0 from '!items!0I30m9qcYJk6UR6o' @ 72057594037927935 : 1 .. '!items!zlDa1vwmls6Uf4pt' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.572608 7fca057fa6c0 Recovering log #38
2023/05/29-08:00:37.585756 7fca057fa6c0 Delete type=3 #36
2023/05/29-08:00:37.585832 7fca057fa6c0 Delete type=0 #38
2023/05/29-08:38:02.133344 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.133405 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.139536 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.146526 7fca04ff96c0 Manual compaction at level-0 from '!items!0I30m9qcYJk6UR6o' @ 72057594037927935 : 1 .. '!items!zlDa1vwmls6Uf4pt' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.398339 7eff555fa6c0 Recovering log #30
2023/05/25-21:13:49.414822 7eff555fa6c0 Delete type=3 #28
2023/05/25-21:13:49.414865 7eff555fa6c0 Delete type=0 #30
2023/05/25-21:14:49.044363 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.044429 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.051438 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.065284 7eff4effd6c0 Manual compaction at level-0 from '!items!0I30m9qcYJk6UR6o' @ 72057594037927935 : 1 .. '!items!zlDa1vwmls6Uf4pt' @ 0 : 0; will stop at (end)
2023/05/25-21:15:46.097841 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:46.206693 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:46.206735 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:27.959815 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.959890 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.966670 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.006880 7eff4effd6c0 Manual compaction at level-0 from '!items!0I30m9qcYJk6UR6o' @ 72057594037927935 : 1 .. '!items!zlDa1vwmls6Uf4pt' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:46.570500 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:46.680089 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:46.680184 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:28.040690 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.040713 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.046802 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.068376 7eff4effd6c0 Manual compaction at level-0 from '!items!1xzVPsfnO3uukbc4' @ 72057594037927935 : 1 .. '!items!yJ3m3fheGJluiGDx' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.655728 7fca06ffd6c0 Recovering log #38
2023/05/29-08:00:37.668313 7fca06ffd6c0 Delete type=3 #36
2023/05/29-08:00:37.668383 7fca06ffd6c0 Delete type=0 #38
2023/05/29-08:38:02.186735 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.186764 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.193967 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.200358 7fca04ff96c0 Manual compaction at level-0 from '!items!1xzVPsfnO3uukbc4' @ 72057594037927935 : 1 .. '!items!yJ3m3fheGJluiGDx' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.471213 7eff555fa6c0 Recovering log #30
2023/05/25-21:13:49.488180 7eff555fa6c0 Delete type=3 #28
2023/05/25-21:13:49.488221 7eff555fa6c0 Delete type=0 #30
2023/05/25-21:14:49.112131 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.112168 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.118810 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.118991 7eff4effd6c0 Manual compaction at level-0 from '!items!1xzVPsfnO3uukbc4' @ 72057594037927935 : 1 .. '!items!yJ3m3fheGJluiGDx' @ 0 : 0; will stop at (end)
2023/05/25-21:15:46.570500 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:46.680089 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:46.680184 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:28.040690 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.040713 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.046802 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.068376 7eff4effd6c0 Manual compaction at level-0 from '!items!1xzVPsfnO3uukbc4' @ 72057594037927935 : 1 .. '!items!yJ3m3fheGJluiGDx' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:47.364642 7eff555fa6c0 Recovering log #34
2023/05/25-21:15:47.456820 7eff555fa6c0 Delete type=3 #32
2023/05/25-21:15:47.456875 7eff555fa6c0 Delete type=0 #34
2023/05/25-21:16:28.123391 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.123429 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.129946 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.151175 7eff4effd6c0 Manual compaction at level-0 from '!items!0EA5It28VyLzQE6n' @ 72057594037927935 : 1 .. '!items!ySY57JWhYS7PWBXv' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.776613 7fca057fa6c0 Recovering log #38
2023/05/29-08:00:37.793481 7fca057fa6c0 Delete type=3 #36
2023/05/29-08:00:37.793539 7fca057fa6c0 Delete type=0 #38
2023/05/29-08:38:02.266442 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.266462 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.273831 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.280134 7fca04ff96c0 Manual compaction at level-0 from '!items!0EA5It28VyLzQE6n' @ 72057594037927935 : 1 .. '!items!ySY57JWhYS7PWBXv' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.591473 7eff555fa6c0 Recovering log #30
2023/05/25-21:13:49.608155 7eff555fa6c0 Delete type=3 #28
2023/05/25-21:13:49.608234 7eff555fa6c0 Delete type=0 #30
2023/05/25-21:14:49.195340 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.195356 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.202659 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.202857 7eff4effd6c0 Manual compaction at level-0 from '!items!0EA5It28VyLzQE6n' @ 72057594037927935 : 1 .. '!items!ySY57JWhYS7PWBXv' @ 0 : 0; will stop at (end)
2023/05/25-21:15:47.364642 7eff555fa6c0 Recovering log #34
2023/05/25-21:15:47.456820 7eff555fa6c0 Delete type=3 #32
2023/05/25-21:15:47.456875 7eff555fa6c0 Delete type=0 #34
2023/05/25-21:16:28.123391 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.123429 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.129946 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.151175 7eff4effd6c0 Manual compaction at level-0 from '!items!0EA5It28VyLzQE6n' @ 72057594037927935 : 1 .. '!items!ySY57JWhYS7PWBXv' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:47.232917 7eff54df96c0 Recovering log #34
2023/05/25-21:15:47.346101 7eff54df96c0 Delete type=3 #32
2023/05/25-21:15:47.346184 7eff54df96c0 Delete type=0 #34
2023/05/25-21:16:28.102572 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.102615 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.109312 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.123302 7eff4effd6c0 Manual compaction at level-0 from '!actors!EzV1Zxuwi7jwa6bj' @ 72057594037927935 : 1 .. '!actors.items!zACge7QxwyJkC6nD.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.743865 7fca067fc6c0 Recovering log #38
2023/05/29-08:00:37.761239 7fca067fc6c0 Delete type=3 #36
2023/05/29-08:00:37.761298 7fca067fc6c0 Delete type=0 #38
2023/05/29-08:38:02.246826 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.246846 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.252958 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.266430 7fca04ff96c0 Manual compaction at level-0 from '!actors!EzV1Zxuwi7jwa6bj' @ 72057594037927935 : 1 .. '!actors.items!zACge7QxwyJkC6nD.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.559852 7eff4ffff6c0 Recovering log #30
2023/05/25-21:13:49.573787 7eff4ffff6c0 Delete type=3 #28
2023/05/25-21:13:49.573837 7eff4ffff6c0 Delete type=0 #30
2023/05/25-21:14:49.175651 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.175683 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.182536 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.202792 7eff4effd6c0 Manual compaction at level-0 from '!actors!EzV1Zxuwi7jwa6bj' @ 72057594037927935 : 1 .. '!actors.items!zACge7QxwyJkC6nD.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)
2023/05/25-21:15:47.232917 7eff54df96c0 Recovering log #34
2023/05/25-21:15:47.346101 7eff54df96c0 Delete type=3 #32
2023/05/25-21:15:47.346184 7eff54df96c0 Delete type=0 #34
2023/05/25-21:16:28.102572 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.102615 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.109312 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.123302 7eff4effd6c0 Manual compaction at level-0 from '!actors!EzV1Zxuwi7jwa6bj' @ 72057594037927935 : 1 .. '!actors.items!zACge7QxwyJkC6nD.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:47.354227 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:47.445778 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:47.445851 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:28.109437 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.109464 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.115515 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.123320 7eff4effd6c0 Manual compaction at level-0 from '!actors!I0Ogzl5rUmFcMhyH' @ 72057594037927935 : 1 .. '!actors.items!z87rV5CJ3inc6ZPc.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.769096 7fca06ffd6c0 Recovering log #38
2023/05/29-08:00:37.785852 7fca06ffd6c0 Delete type=3 #36
2023/05/29-08:00:37.785897 7fca06ffd6c0 Delete type=0 #38
2023/05/29-08:38:02.260094 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.260115 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.266312 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.273947 7fca04ff96c0 Manual compaction at level-0 from '!actors!I0Ogzl5rUmFcMhyH' @ 72057594037927935 : 1 .. '!actors.items!z87rV5CJ3inc6ZPc.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.578754 7eff4ffff6c0 Recovering log #30
2023/05/25-21:13:49.591279 7eff4ffff6c0 Delete type=3 #28
2023/05/25-21:13:49.591323 7eff4ffff6c0 Delete type=0 #30
2023/05/25-21:14:49.189293 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.189312 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.195286 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.202835 7eff4effd6c0 Manual compaction at level-0 from '!actors!I0Ogzl5rUmFcMhyH' @ 72057594037927935 : 1 .. '!actors.items!z87rV5CJ3inc6ZPc.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)
2023/05/25-21:15:47.354227 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:47.445778 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:47.445851 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:28.109437 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.109464 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.115515 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.123320 7eff4effd6c0 Manual compaction at level-0 from '!actors!I0Ogzl5rUmFcMhyH' @ 72057594037927935 : 1 .. '!actors.items!z87rV5CJ3inc6ZPc.zyNYa3hYtrOcF2jA' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:46.298827 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:46.399833 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:46.399890 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:27.993682 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.993730 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.006723 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.006941 7eff4effd6c0 Manual compaction at level-0 from '!macros!2VvH2rmxV33jGjMU' @ 72057594037927935 : 1 .. '!macros!vTfJTFYYiRu8X5LM' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.608287 7fca05ffb6c0 Recovering log #38
2023/05/29-08:00:37.624639 7fca05ffb6c0 Delete type=3 #36
2023/05/29-08:00:37.624687 7fca05ffb6c0 Delete type=0 #38
2023/05/29-08:38:02.146540 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.146589 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.152897 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.166801 7fca04ff96c0 Manual compaction at level-0 from '!macros!2VvH2rmxV33jGjMU' @ 72057594037927935 : 1 .. '!macros!vTfJTFYYiRu8X5LM' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.428088 7eff54df96c0 Recovering log #30
2023/05/25-21:13:49.448116 7eff54df96c0 Delete type=3 #28
2023/05/25-21:13:49.448162 7eff54df96c0 Delete type=0 #30
2023/05/25-21:14:49.065440 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.065483 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.072750 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.092038 7eff4effd6c0 Manual compaction at level-0 from '!macros!2VvH2rmxV33jGjMU' @ 72057594037927935 : 1 .. '!macros!vTfJTFYYiRu8X5LM' @ 0 : 0; will stop at (end)
2023/05/25-21:15:46.298827 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:46.399833 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:46.399890 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:27.993682 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.993730 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.006723 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.006941 7eff4effd6c0 Manual compaction at level-0 from '!macros!2VvH2rmxV33jGjMU' @ 72057594037927935 : 1 .. '!macros!vTfJTFYYiRu8X5LM' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:46.182033 7eff555fa6c0 Recovering log #34
2023/05/25-21:15:46.296161 7eff555fa6c0 Delete type=3 #32
2023/05/25-21:15:46.296228 7eff555fa6c0 Delete type=0 #34
2023/05/25-21:16:27.978942 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.978984 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.993460 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.006924 7eff4effd6c0 Manual compaction at level-0 from '!items!0S9GCJskJQaYEuXz' @ 72057594037927935 : 1 .. '!items!xzCBr3FiSk1WewcT' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.587105 7fca06ffd6c0 Recovering log #38
2023/05/29-08:00:37.604009 7fca06ffd6c0 Delete type=3 #36
2023/05/29-08:00:37.604101 7fca06ffd6c0 Delete type=0 #38
2023/05/29-08:38:02.153053 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.153094 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.160106 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.166845 7fca04ff96c0 Manual compaction at level-0 from '!items!0S9GCJskJQaYEuXz' @ 72057594037927935 : 1 .. '!items!xzCBr3FiSk1WewcT' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.407166 7eff4f7fe6c0 Recovering log #30
2023/05/25-21:13:49.425295 7eff4f7fe6c0 Delete type=3 #28
2023/05/25-21:13:49.425391 7eff4f7fe6c0 Delete type=0 #30
2023/05/25-21:14:49.072921 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.072951 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.079014 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.092049 7eff4effd6c0 Manual compaction at level-0 from '!items!0S9GCJskJQaYEuXz' @ 72057594037927935 : 1 .. '!items!xzCBr3FiSk1WewcT' @ 0 : 0; will stop at (end)
2023/05/25-21:15:46.182033 7eff555fa6c0 Recovering log #34
2023/05/25-21:15:46.296161 7eff555fa6c0 Delete type=3 #32
2023/05/25-21:15:46.296228 7eff555fa6c0 Delete type=0 #34
2023/05/25-21:16:27.978942 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.978984 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.993460 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.006924 7eff4effd6c0 Manual compaction at level-0 from '!items!0S9GCJskJQaYEuXz' @ 72057594037927935 : 1 .. '!items!xzCBr3FiSk1WewcT' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:47.448784 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:47.560514 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:47.560615 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:28.130099 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.130146 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.137287 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.151203 7eff4effd6c0 Manual compaction at level-0 from '!items!07Af1kdvnG2iLBPN' @ 72057594037927935 : 1 .. '!items!wsgsNdfiEiVo6ylJ' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.792205 7fca06ffd6c0 Recovering log #38
2023/05/29-08:00:37.806135 7fca06ffd6c0 Delete type=3 #36
2023/05/29-08:00:37.806180 7fca06ffd6c0 Delete type=0 #38
2023/05/29-08:38:02.273959 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.273981 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.280037 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.293442 7fca04ff96c0 Manual compaction at level-0 from '!items!07Af1kdvnG2iLBPN' @ 72057594037927935 : 1 .. '!items!wsgsNdfiEiVo6ylJ' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.593515 7eff4ffff6c0 Recovering log #30
2023/05/25-21:13:49.611731 7eff4ffff6c0 Delete type=3 #28
2023/05/25-21:13:49.611768 7eff4ffff6c0 Delete type=0 #30
2023/05/25-21:14:49.202970 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.203014 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.209145 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.221924 7eff4effd6c0 Manual compaction at level-0 from '!items!07Af1kdvnG2iLBPN' @ 72057594037927935 : 1 .. '!items!wsgsNdfiEiVo6ylJ' @ 0 : 0; will stop at (end)
2023/05/25-21:15:47.448784 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:47.560514 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:47.560615 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:28.130099 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.130146 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.137287 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.151203 7eff4effd6c0 Manual compaction at level-0 from '!items!07Af1kdvnG2iLBPN' @ 72057594037927935 : 1 .. '!items!wsgsNdfiEiVo6ylJ' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:46.401485 7eff54df96c0 Recovering log #34
2023/05/25-21:15:46.563229 7eff54df96c0 Delete type=3 #32
2023/05/25-21:15:46.563295 7eff54df96c0 Delete type=0 #34
2023/05/25-21:16:28.013934 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.013979 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.022280 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.040559 7eff4effd6c0 Manual compaction at level-0 from '!items!2KM1yiEOE0ZdT2oL' @ 72057594037927935 : 1 .. '!items!zIXgRwfB83DMaNX8' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.626075 7fca067fc6c0 Recovering log #38
2023/05/29-08:00:37.637614 7fca067fc6c0 Delete type=3 #36
2023/05/29-08:00:37.637775 7fca067fc6c0 Delete type=0 #38
2023/05/29-08:38:02.166865 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.166909 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.173559 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.186720 7fca04ff96c0 Manual compaction at level-0 from '!items!2KM1yiEOE0ZdT2oL' @ 72057594037927935 : 1 .. '!items!zIXgRwfB83DMaNX8' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.449588 7eff4ffff6c0 Recovering log #30
2023/05/25-21:13:49.466841 7eff4ffff6c0 Delete type=3 #28
2023/05/25-21:13:49.466883 7eff4ffff6c0 Delete type=0 #30
2023/05/25-21:14:49.105420 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.105454 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.112001 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.118972 7eff4effd6c0 Manual compaction at level-0 from '!items!2KM1yiEOE0ZdT2oL' @ 72057594037927935 : 1 .. '!items!zIXgRwfB83DMaNX8' @ 0 : 0; will stop at (end)
2023/05/25-21:15:46.401485 7eff54df96c0 Recovering log #34
2023/05/25-21:15:46.563229 7eff54df96c0 Delete type=3 #32
2023/05/25-21:15:46.563295 7eff54df96c0 Delete type=0 #34
2023/05/25-21:16:28.013934 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.013979 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.022280 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.040559 7eff4effd6c0 Manual compaction at level-0 from '!items!2KM1yiEOE0ZdT2oL' @ 72057594037927935 : 1 .. '!items!zIXgRwfB83DMaNX8' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:46.318556 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:46.419870 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:46.419928 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:28.007020 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.007107 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.013770 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.040546 7eff4effd6c0 Manual compaction at level-0 from '!items!0jrEZ62Q2Jz4kBGf' @ 72057594037927935 : 1 .. '!items!xa4t9Lbt6uLEjap6' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.609402 7fca06ffd6c0 Recovering log #38
2023/05/29-08:00:37.627787 7fca06ffd6c0 Delete type=3 #36
2023/05/29-08:00:37.627875 7fca06ffd6c0 Delete type=0 #38
2023/05/29-08:38:02.160463 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.160500 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.166650 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.173699 7fca04ff96c0 Manual compaction at level-0 from '!items!0jrEZ62Q2Jz4kBGf' @ 72057594037927935 : 1 .. '!items!xa4t9Lbt6uLEjap6' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.433951 7eff555fa6c0 Recovering log #30
2023/05/25-21:13:49.451556 7eff555fa6c0 Delete type=3 #28
2023/05/25-21:13:49.451622 7eff555fa6c0 Delete type=0 #30
2023/05/25-21:14:49.079080 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.079100 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.085553 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.092058 7eff4effd6c0 Manual compaction at level-0 from '!items!0jrEZ62Q2Jz4kBGf' @ 72057594037927935 : 1 .. '!items!xa4t9Lbt6uLEjap6' @ 0 : 0; will stop at (end)
2023/05/25-21:15:46.318556 7eff4ffff6c0 Recovering log #34
2023/05/25-21:15:46.419870 7eff4ffff6c0 Delete type=3 #32
2023/05/25-21:15:46.419928 7eff4ffff6c0 Delete type=0 #34
2023/05/25-21:16:28.007020 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.007107 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.013770 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.040546 7eff4effd6c0 Manual compaction at level-0 from '!items!0jrEZ62Q2Jz4kBGf' @ 72057594037927935 : 1 .. '!items!xa4t9Lbt6uLEjap6' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:46.209534 7eff54df96c0 Recovering log #34
2023/05/25-21:15:46.316169 7eff54df96c0 Delete type=3 #32
2023/05/25-21:15:46.316220 7eff54df96c0 Delete type=0 #34
2023/05/25-21:16:27.966800 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.966836 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.978738 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.006905 7eff4effd6c0 Manual compaction at level-0 from '!journal!3wVxF2IRf3c1lOxC' @ 72057594037927935 : 1 .. '!journal.pages!erO7AICiN1LtRyFg.je94DRajuy64jTrw' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.589320 7fca05ffb6c0 Recovering log #38
2023/05/29-08:00:37.606932 7fca05ffb6c0 Delete type=3 #36
2023/05/29-08:00:37.607016 7fca05ffb6c0 Delete type=0 #38
2023/05/29-08:38:02.139690 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.139726 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.146418 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.160443 7fca04ff96c0 Manual compaction at level-0 from '!journal!3wVxF2IRf3c1lOxC' @ 72057594037927935 : 1 .. '!journal.pages!erO7AICiN1LtRyFg.je94DRajuy64jTrw' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.418316 7eff4ffff6c0 Recovering log #30
2023/05/25-21:13:49.431879 7eff4ffff6c0 Delete type=3 #28
2023/05/25-21:13:49.431952 7eff4ffff6c0 Delete type=0 #30
2023/05/25-21:14:49.085670 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.085717 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.091945 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.092065 7eff4effd6c0 Manual compaction at level-0 from '!journal!3wVxF2IRf3c1lOxC' @ 72057594037927935 : 1 .. '!journal.pages!erO7AICiN1LtRyFg.je94DRajuy64jTrw' @ 0 : 0; will stop at (end)
2023/05/25-21:15:46.209534 7eff54df96c0 Recovering log #34
2023/05/25-21:15:46.316169 7eff54df96c0 Delete type=3 #32
2023/05/25-21:15:46.316220 7eff54df96c0 Delete type=0 #34
2023/05/25-21:16:27.966800 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:27.966836 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:27.978738 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.006905 7eff4effd6c0 Manual compaction at level-0 from '!journal!3wVxF2IRf3c1lOxC' @ 72057594037927935 : 1 .. '!journal.pages!erO7AICiN1LtRyFg.je94DRajuy64jTrw' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000036
MANIFEST-000040

View File

@ -1,7 +1,7 @@
2023/05/25-21:15:47.458641 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:47.574238 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:47.574441 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:28.137401 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.137423 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.144122 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.151220 7eff4effd6c0 Manual compaction at level-0 from '!items!47Wrb4HZnXprP43E' @ 72057594037927935 : 1 .. '!items!zptDgl2kOGlj9tHK' @ 0 : 0; will stop at (end)
2023/05/29-08:00:37.797855 7fca05ffb6c0 Recovering log #38
2023/05/29-08:00:37.813416 7fca05ffb6c0 Delete type=3 #36
2023/05/29-08:00:37.813460 7fca05ffb6c0 Delete type=0 #38
2023/05/29-08:38:02.287195 7fca04ff96c0 Level-0 table #43: started
2023/05/29-08:38:02.287236 7fca04ff96c0 Level-0 table #43: 0 bytes OK
2023/05/29-08:38:02.293260 7fca04ff96c0 Delete type=0 #41
2023/05/29-08:38:02.293514 7fca04ff96c0 Manual compaction at level-0 from '!items!47Wrb4HZnXprP43E' @ 72057594037927935 : 1 .. '!items!zptDgl2kOGlj9tHK' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2023/05/25-21:13:49.609981 7eff54df96c0 Recovering log #30
2023/05/25-21:13:49.627305 7eff54df96c0 Delete type=3 #28
2023/05/25-21:13:49.627391 7eff54df96c0 Delete type=0 #30
2023/05/25-21:14:49.209225 7eff4effd6c0 Level-0 table #35: started
2023/05/25-21:14:49.209248 7eff4effd6c0 Level-0 table #35: 0 bytes OK
2023/05/25-21:14:49.215634 7eff4effd6c0 Delete type=0 #33
2023/05/25-21:14:49.221933 7eff4effd6c0 Manual compaction at level-0 from '!items!47Wrb4HZnXprP43E' @ 72057594037927935 : 1 .. '!items!zptDgl2kOGlj9tHK' @ 0 : 0; will stop at (end)
2023/05/25-21:15:47.458641 7eff4f7fe6c0 Recovering log #34
2023/05/25-21:15:47.574238 7eff4f7fe6c0 Delete type=3 #32
2023/05/25-21:15:47.574441 7eff4f7fe6c0 Delete type=0 #34
2023/05/25-21:16:28.137401 7eff4effd6c0 Level-0 table #39: started
2023/05/25-21:16:28.137423 7eff4effd6c0 Level-0 table #39: 0 bytes OK
2023/05/25-21:16:28.144122 7eff4effd6c0 Delete type=0 #37
2023/05/25-21:16:28.151220 7eff4effd6c0 Manual compaction at level-0 from '!items!47Wrb4HZnXprP43E' @ 72057594037927935 : 1 .. '!items!zptDgl2kOGlj9tHK' @ 0 : 0; will stop at (end)

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