Compare commits

..
5 Commits
Author SHA1 Message Date
uberwald 215a8a1a45 Sync compendiums
Release Creation / build (release) Successful in 3m4s
2026-08-03 06:41:09 +02:00
uberwald 1b24d0223a feat: publicité des modules premium en tchat quand ils ne sont pas activés 2026-08-03 06:38:54 +02:00
uberwald 33d4c26619 fix(style): lisibilité des journaux (texte sombre sur fond blanc en vue et édition) 2026-08-03 06:19:05 +02:00
uberwald cc81acce5b fix(appv2): correction sauvegarde champs description HTML
- Remplacer les balises <prose-mirror> brutes par {{formInput}}
  pour les champs HTMLField (biographie, notes, description)
- Onglets passent en basculement CSS sans re-render
- Ajout de systemFields au contexte des feuilles d'acteur
2026-07-30 21:23:25 +02:00
uberwald c56903c8e4 Fix release numbering 2026-06-14 23:22:30 +02:00
123 changed files with 398 additions and 333 deletions
+1 -1
View File
@@ -59,5 +59,5 @@ jobs:
version: ${{github.event.release.tag_name}}
manifest: "https://www.uberwald.me/gitea/public/bol/releases/download/latest/system.json"
notes: "https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/bol.zip"
compatibility-minimum: "13"
compatibility-minimum: "14"
compatibility-verified: "14"
+51
View File
@@ -0,0 +1,51 @@
# BoL — FoundryVTT Game System
FoundryVTT game system for Barbarians of Lemuria (French edition, Ludospherik). System id `bol`. Compatible Foundry v13v14.
## Commands
| Command | Action |
|---------|--------|
| `npm run css` | Compile LESS → `css/bol.css` (one-shot) |
| `npm run watch` / `npm start` | Watch `styles/**/*.less`, recompile on change |
No test or lint scripts exist.
## Entry Point & Architecture
`module/bol.js` — wires everything in `Hooks.once('init', ...)` and `Hooks.once('ready', ...)`.
| Path | Role |
|------|------|
| `module/bol.js` | System init, sheet/data model registration, socket setup |
| `module/system/config.js` | `BOL` constants, `System.debugMode` flag |
| `module/system/bol-utility.js` | Static helpers, settings (`bol` namespace), socket handler (`system.bol`) |
| `module/controllers/bol-rolls.js` | All roll logic — `BoLRoll` static methods |
| `module/models/` | DataModel classes (`.mjs`) for Actor/Item types |
| `module/applications/sheets/` | **AppV2 sheets** (`ActorSheetV2`/`ItemSheetV2` + `HandlebarsApplicationMixin`) |
| `styles/` | LESS sources → compiled to `css/bol.css` |
| `templates/` | Handlebars `.hbs` partials |
| `lang/` | `fr.json`, `en.json`, `de.json`, `es.json` |
## Key Conventions
- **AppV2 sheets** — base classes are `foundry.applications.sheets.ActorSheetV2` / `ItemSheetV2` mixed with `HandlebarsApplicationMixin`. Do NOT use `foundry.appv1.sheets.*`.
- **`game.bol`** — system exposes `BoLActor`, `BoLItem`, `BoLRoll`, `BoLUtility`, `Macros`, `BOL` config, `models`, `sheets` on this namespace after init.
- **i18n prefix** — all keys start with `BOL.`; use `game.i18n.localize("BOL.xxx")`.
- **FR-first** — `fr.json` is most complete. EN compendium translation requires [Babele](https://gitlab.com/riccisi/foundryvtt-babele) module. A warning fires at startup if EN is selected without Babele.
- **`System.debugMode = true`** in `module/system/config.js:8` — set to `false` before release.
- **LESS only** — never edit `css/bol.css` directly. Edit `.less` files under `styles/`, recompile with `npm run css`.
- **Data models** — `template.json` defines schema via `Actor.types` (character, encounter, horde, vehicle) and `Item.types` (item, feature). All data lives under `.system`.
- **Sheet partials** — registered in `module/system/templates.js`. Add new partials there.
- **Static classes** — `BoLRoll` and `BoLUtility` are purely static; never instantiate.
- **`template.json.SAVED`** in root is the data model reference; the actual `template.json` may need regeneration.
- **`package.json` and lockfile are in `.gitignore`** — npm is dev-only for LESS compilation. Not needed to run the system in Foundry.
- **`{{formInput}}` for HTML fields** — always use `{{formInput fieldDef enriched=x value=y name="system.path" toggled=isEditable}}` for `HTMLField` in AppV2 sheets. Never use raw `<prose-mirror>` elements; they break form submission.
- **Tab switching** — use CSS-only toggle (no `this.render()`) to preserve ProseMirror editor state. See `base-item-sheet.mjs` pattern.
## CI & Release
- CI triggers **only on release publish** (`.gitea/workflows/main.yml`).
- Release zips: `system.json template.json README.md LICENSE assets/ compendiums/ css/ fonts/ images/ lang/ module/ packs/ styles/ templates/ ui/`.
- Version/URL manifest/download are substituted in `system.json` during CI.
- Published to Foundry package registry via `foundryvtt-publish-package-action`.
+25 -11
View File
@@ -1512,6 +1512,21 @@ h2.bad {
.bol-welcome-card .welcome-body a {
color: darkred;
}
.bol-welcome-card .welcome-body .welcome-premium {
margin-top: 6px;
padding: 6px 10px;
font-size: 0.8rem;
color: #191813;
background: linear-gradient(135deg, #fdf7e6, #f6e8c8);
border: 1px solid #c9a227;
border-left: 4px solid #c9a227;
border-radius: 3px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.bol-welcome-card .welcome-body .welcome-premium a {
color: #7a5c00;
font-weight: bold;
}
.bol-welcome-card .welcome-footer {
margin-top: 8px;
padding: 4px 10px;
@@ -1522,15 +1537,6 @@ h2.bad {
border-radius: 4px;
letter-spacing: 0.5px;
}
.bol-welcome-card .welcome-warning {
margin-top: 6px;
padding: 4px 8px;
font-size: 0.8rem;
color: #7a0000;
background: #fff3f3;
border: 1px solid #e57373;
border-radius: 3px;
}
/* Component Styles */
/* ----------------------------------------- */
/* Common Sheet Styles */
@@ -1538,8 +1544,16 @@ h2.bad {
body.system-bol img#logo {
content: url("/systems/bol/ui/logo2.webp");
}
.journal-page-content {
/* Reserved for future use */
.journal-page-content,
.journal-page-content p,
.journal-page-content div,
.journal-page-content span {
color: #191813 !important;
}
.sheet.journal-entry prose-mirror.journal-page-content,
prose-mirror.journal-page-content {
background-color: white;
background: white;
}
.bol.dialog > section.window-content {
background: white;
+2 -1
View File
@@ -469,7 +469,8 @@
"BOL.chat.welcome4": "Im Discord findet ihr Support für die FoundryVTT-Implementierung dieses Systems: https://discord.gg/pPSDNJk",
"BOL.chat.welcome5": "Auf ein gutes Spiel in Lemuria!",
"BOL.chat.welcome6": "",
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !",
"BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.settings.rollArmor": "Roll for armor",
"BOL.settings.rollArmorTooltip": "Roll for armor value, fixed value if unchecked",
+2 -1
View File
@@ -545,7 +545,8 @@
"BOL.chat.criticalbuttonjournal": "Legendary/Heroic Success",
"BOL.chat.nodamage": "Do not apply damages",
"BOL.chat.armorRoll": "Armor roll",
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !",
"BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.dialog.soeasy": "So easy (+4)",
"BOL.dialog.soeasy3": "So easy (+3)",
+2 -1
View File
@@ -535,7 +535,8 @@
"BOL.chat.criticalinfo": "¡Esto es un éxito Asombroso o Legendario! Escoge tus opciones y efectos",
"BOL.chat.criticalbuttonjournal": "Éxito Asombroso/Legendario",
"BOL.chat.armorRoll": "Tirada de Armadura",
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !",
"BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.dialog.soeasy": "Demasiado fácil (+4)",
"BOL.dialog.veryeasy": "Muy fácil (+2)",
+2 -1
View File
@@ -571,7 +571,8 @@
"BOL.chat.criticalinfo": "C'est un succès Héroïque ! Choisissez vos options et effets !",
"BOL.chat.criticallegendaryinfo": "C'est un succès Légendaire ! Choisissez vos options et effets !",
"BOL.chat.criticalbuttonjournal": "Succès Héroïque/Légendaire",
"BOL.chat.bolRulebookMessage": "N'oubliez pas le module complet du Livre de Règle et des Sagas disponible ici : https://www.ludospherik-editions.com !",
"BOL.chat.bolRulebookMessage": "N'oubliez pas le module premium du Livre de Règle et des Sagas, disponible sur le site Foundry : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Découvrez le module premium des Chroniques de Lémurie (vol. 1), disponible sur le site Foundry : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.chat.losshp": "{name} a perdu {lossHP} points de Vitalité. Si il se repose quelques minutes, il peut récupérer {recupHP} points de Vitalité.",
"BOL.chat.applyrecup": "Récupérer pendant quelques minutes (+{recupHP} Vitalité)",
"BOL.chat.inforecup": "{name} vient de récupérer {recupHP} points de Vitalité après quelques minutes de repos.",
@@ -49,6 +49,7 @@ export default class BoLBaseActorSheet extends HandlebarsApplicationMixin(foundr
return {
actor,
system: actor.system,
systemFields: actor.system.schema.fields,
config: game.bol.config,
isGM: game.user.isGM,
isEditable: this.isEditable,
@@ -112,7 +113,8 @@ export default class BoLBaseActorSheet extends HandlebarsApplicationMixin(foundr
link.addEventListener("click", (event) => {
event.preventDefault()
this.tabGroups[group] = tab
this.render()
nav.querySelectorAll("[data-tab]").forEach(l => l.classList.toggle("active", l.dataset.tab === tab))
this.element.querySelectorAll(`[data-group="${group}"][data-tab]`).forEach(c => c.classList.toggle("active", c.dataset.tab === tab))
})
})
+4 -3
View File
@@ -112,14 +112,15 @@ Hooks.once("babele.init", (babele) => {
/* -------------------------------------------- */
async function welcomeMessage() {
const noRulebook = !game.modules.find(m => m.id === "bol-rulebook")
const noRulebook = !game.modules.get("bol-rulebook")?.active
const noChronicles = !game.modules.get("bol-chronicles-1")?.active
const content = await foundry.applications.handlebars.renderTemplate(
"systems/bol/templates/chat/chat-welcome.hbs",
{ noRulebook }
{ noRulebook, noChronicles }
)
ChatMessage.create({ user: game.user.id, whisper: [game.user.id], content })
if (game.user.isGM && game.i18n.lang == 'en' && !game.modules.find(m => m.id == "babele")) {
if (game.user.isGM && game.i18n.lang == 'en' && !game.modules.get("babele")?.active) {
ChatMessage.create({
user: game.user.id,
whisper: [game.user.id],
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001182
MANIFEST-001233
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.612129 7fe4caffd6c0 Delete type=3 #1
2026/05/25-23:00:36.536419 7fe4c9ffb6c0 Level-0 table #1185: started
2026/05/25-23:00:36.536444 7fe4c9ffb6c0 Level-0 table #1185: 0 bytes OK
2026/05/25-23:00:36.543456 7fe4c9ffb6c0 Delete type=0 #1183
2026/05/25-23:00:36.571253 7fe4c9ffb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 321 : 1
2026/05/25-23:00:36.571263 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.575045 7fe4c9ffb6c0 Generated table #1186@0: 23 keys, 27230 bytes
2026/05/25-23:00:36.575065 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 27230 bytes
2026/05/25-23:00:36.581924 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.582006 7fe4c9ffb6c0 Delete type=2 #1137
2026/05/25-23:00:36.591655 7fe4c9ffb6c0 Manual compaction at level-0 from '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 321 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.779385 7f0fa7fff6c0 Recovering log #1231
2026/08/03-06:19:48.790078 7f0fa7fff6c0 Delete type=3 #1229
2026/08/03-06:19:48.790149 7f0fa7fff6c0 Delete type=0 #1231
2026/08/03-06:38:26.831982 7f0fa6ffd6c0 Level-0 table #1236: started
2026/08/03-06:38:26.832007 7f0fa6ffd6c0 Level-0 table #1236: 0 bytes OK
2026/08/03-06:38:26.838786 7f0fa6ffd6c0 Delete type=0 #1234
2026/08/03-06:38:26.853917 7f0fa6ffd6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.597782 7fe4caffd6c0 Log #1180: 0 ops saved to Table #1181 OK
2026/05/25-23:00:12.597848 7fe4caffd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/aides-de-jeu/001180.log: OK
2026/05/25-23:00:12.598005 7fe4caffd6c0 Table #1137: 23 entries OK
2026/05/25-23:00:12.601125 7fe4caffd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/aides-de-jeu; recovered 1 files; 27230 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.756827 7f0ff4ffe6c0 Recovering log #1227
2026/08/03-05:42:23.787896 7f0ff4ffe6c0 Delete type=3 #1225
2026/08/03-05:42:23.787958 7f0ff4ffe6c0 Delete type=0 #1227
2026/08/03-06:19:13.177131 7f0fa6ffd6c0 Level-0 table #1232: started
2026/08/03-06:19:13.177159 7f0fa6ffd6c0 Level-0 table #1232: 0 bytes OK
2026/08/03-06:19:13.184606 7f0fa6ffd6c0 Delete type=0 #1230
2026/08/03-06:19:13.191444 7f0fa6ffd6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001083
MANIFEST-001134
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.578214 7fe4cb7fe6c0 Delete type=3 #1
2026/05/25-23:00:36.530100 7fe4c9ffb6c0 Level-0 table #1086: started
2026/05/25-23:00:36.530126 7fe4c9ffb6c0 Level-0 table #1086: 0 bytes OK
2026/05/25-23:00:36.536304 7fe4c9ffb6c0 Delete type=0 #1084
2026/05/25-23:00:36.553226 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at '!items!xhEcsi3WHjbt2ro9' @ 42 : 1
2026/05/25-23:00:36.553236 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.557165 7fe4c9ffb6c0 Generated table #1087@0: 6 keys, 5424 bytes
2026/05/25-23:00:36.557185 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 5424 bytes
2026/05/25-23:00:36.565017 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.565064 7fe4c9ffb6c0 Delete type=2 #1022
2026/05/25-23:00:36.582164 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!xhEcsi3WHjbt2ro9' @ 42 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.750852 7f0ff57ff6c0 Recovering log #1132
2026/08/03-06:19:48.761758 7f0ff57ff6c0 Delete type=3 #1130
2026/08/03-06:19:48.761842 7f0ff57ff6c0 Delete type=0 #1132
2026/08/03-06:38:26.817856 7f0fa6ffd6c0 Level-0 table #1137: started
2026/08/03-06:38:26.817889 7f0fa6ffd6c0 Level-0 table #1137: 0 bytes OK
2026/08/03-06:38:26.824151 7f0fa6ffd6c0 Delete type=0 #1135
2026/08/03-06:38:26.824513 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.561159 7fe4cb7fe6c0 Log #1081: 0 ops saved to Table #1082 OK
2026/05/25-23:00:12.561275 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/armors/001081.log: OK
2026/05/25-23:00:12.561353 7fe4cb7fe6c0 Table #1022: 6 entries OK
2026/05/25-23:00:12.565343 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/armors; recovered 1 files; 5424 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.674797 7f0fa7fff6c0 Recovering log #1128
2026/08/03-05:42:23.703359 7f0fa7fff6c0 Delete type=3 #1126
2026/08/03-05:42:23.703453 7f0fa7fff6c0 Delete type=0 #1128
2026/08/03-06:19:13.162949 7f0fa6ffd6c0 Level-0 table #1133: started
2026/08/03-06:19:13.162995 7f0fa6ffd6c0 Level-0 table #1133: 0 bytes OK
2026/08/03-06:19:13.170299 7f0fa6ffd6c0 Delete type=0 #1131
2026/08/03-06:19:13.184757 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001177
MANIFEST-001228
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.425549 7fe4ca7fc6c0 Delete type=3 #1
2026/05/25-23:00:36.388047 7fe4c9ffb6c0 Level-0 table #1180: started
2026/05/25-23:00:36.388101 7fe4c9ffb6c0 Level-0 table #1180: 0 bytes OK
2026/05/25-23:00:36.395212 7fe4c9ffb6c0 Delete type=0 #1178
2026/05/25-23:00:36.417679 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at '!items!zgspy1QKaxdEetEw' @ 533 : 1
2026/05/25-23:00:36.417686 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.422045 7fe4c9ffb6c0 Generated table #1181@0: 61 keys, 20970 bytes
2026/05/25-23:00:36.422060 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 20970 bytes
2026/05/25-23:00:36.429165 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.429431 7fe4c9ffb6c0 Delete type=2 #1116
2026/05/25-23:00:36.458787 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!zgspy1QKaxdEetEw' @ 533 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.636406 7f0ff4ffe6c0 Recovering log #1226
2026/08/03-06:19:48.647892 7f0ff4ffe6c0 Delete type=3 #1224
2026/08/03-06:19:48.647974 7f0ff4ffe6c0 Delete type=0 #1226
2026/08/03-06:38:26.769280 7f0fa6ffd6c0 Level-0 table #1231: started
2026/08/03-06:38:26.769359 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
2026/08/03-06:38:26.776073 7f0fa6ffd6c0 Delete type=0 #1229
2026/08/03-06:38:26.797077 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.401220 7fe4ca7fc6c0 Log #1175: 0 ops saved to Table #1176 OK
2026/05/25-23:00:12.401339 7fe4ca7fc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/boons/001175.log: OK
2026/05/25-23:00:12.401481 7fe4ca7fc6c0 Table #1116: 61 entries OK
2026/05/25-23:00:12.404758 7fe4ca7fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/boons; recovered 1 files; 20970 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.425060 7f0fa7fff6c0 Recovering log #1222
2026/08/03-05:42:23.456278 7f0fa7fff6c0 Delete type=3 #1220
2026/08/03-05:42:23.456346 7f0fa7fff6c0 Delete type=0 #1222
2026/08/03-06:19:13.105722 7f0fa6ffd6c0 Level-0 table #1227: started
2026/08/03-06:19:13.105794 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
2026/08/03-06:19:13.112554 7f0fa6ffd6c0 Delete type=0 #1225
2026/08/03-06:19:13.133354 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001176
MANIFEST-001227
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.447017 7fe4caffd6c0 Delete type=3 #1
2026/05/25-23:00:36.410024 7fe4c9ffb6c0 Level-0 table #1179: started
2026/05/25-23:00:36.410044 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
2026/05/25-23:00:36.417584 7fe4c9ffb6c0 Delete type=0 #1177
2026/05/25-23:00:36.449756 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at '!items!yofwG0YrsL902G77' @ 64 : 1
2026/05/25-23:00:36.449760 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.452819 7fe4c9ffb6c0 Generated table #1180@0: 8 keys, 2453 bytes
2026/05/25-23:00:36.452824 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 2453 bytes
2026/05/25-23:00:36.458709 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.458735 7fe4c9ffb6c0 Delete type=2 #1115
2026/05/25-23:00:36.458914 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!yofwG0YrsL902G77' @ 64 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.651558 7f0ff57ff6c0 Recovering log #1225
2026/08/03-06:19:48.662260 7f0ff57ff6c0 Delete type=3 #1223
2026/08/03-06:19:48.662354 7f0ff57ff6c0 Delete type=0 #1225
2026/08/03-06:38:26.782903 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.782939 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.790042 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.797110 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.429919 7fe4caffd6c0 Log #1174: 0 ops saved to Table #1175 OK
2026/05/25-23:00:12.430037 7fe4caffd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/boonsflawscreatures/001174.log: OK
2026/05/25-23:00:12.430106 7fe4caffd6c0 Table #1115: 8 entries OK
2026/05/25-23:00:12.434252 7fe4caffd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/boonsflawscreatures; recovered 1 files; 2453 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.460746 7f0fa77fe6c0 Recovering log #1221
2026/08/03-05:42:23.486451 7f0fa77fe6c0 Delete type=3 #1219
2026/08/03-05:42:23.486511 7f0fa77fe6c0 Delete type=0 #1221
2026/08/03-06:19:13.112716 7f0fa6ffd6c0 Level-0 table #1226: started
2026/08/03-06:19:13.112749 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/08/03-06:19:13.119007 7f0fa6ffd6c0 Delete type=0 #1224
2026/08/03-06:19:13.133376 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001176
MANIFEST-001227
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.484684 7fe4cbfff6c0 Delete type=3 #1
2026/05/25-23:00:36.403076 7fe4c9ffb6c0 Level-0 table #1179: started
2026/05/25-23:00:36.403094 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
2026/05/25-23:00:36.409935 7fe4c9ffb6c0 Delete type=0 #1177
2026/05/25-23:00:36.439840 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at '!items!zxY3sW0iCJBvwjOS' @ 215 : 1
2026/05/25-23:00:36.439845 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.443478 7fe4c9ffb6c0 Generated table #1180@0: 27 keys, 42639 bytes
2026/05/25-23:00:36.443484 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 42639 bytes
2026/05/25-23:00:36.449667 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.449695 7fe4c9ffb6c0 Delete type=2 #1115
2026/05/25-23:00:36.458796 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!zxY3sW0iCJBvwjOS' @ 215 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.681657 7f0ff4ffe6c0 Recovering log #1225
2026/08/03-06:19:48.692268 7f0ff4ffe6c0 Delete type=3 #1223
2026/08/03-06:19:48.692351 7f0ff4ffe6c0 Delete type=0 #1225
2026/08/03-06:38:26.790164 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.790190 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.796894 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.797197 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.469657 7fe4cbfff6c0 Log #1174: 0 ops saved to Table #1175 OK
2026/05/25-23:00:12.469724 7fe4cbfff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/careers/001174.log: OK
2026/05/25-23:00:12.469831 7fe4cbfff6c0 Table #1115: 27 entries OK
2026/05/25-23:00:12.473085 7fe4cbfff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/careers; recovered 1 files; 42639 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.515629 7f0fa77fe6c0 Recovering log #1221
2026/08/03-05:42:23.541236 7f0fa77fe6c0 Delete type=3 #1219
2026/08/03-05:42:23.541308 7f0fa77fe6c0 Delete type=0 #1221
2026/08/03-06:19:13.126577 7f0fa6ffd6c0 Level-0 table #1226: started
2026/08/03-06:19:13.126609 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/08/03-06:19:13.133180 7f0fa6ffd6c0 Delete type=0 #1224
2026/08/03-06:19:13.133414 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001174
MANIFEST-001225
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.737191 7fe4caffd6c0 Delete type=3 #1
2026/05/25-23:00:36.664472 7fe4c9ffb6c0 Level-0 table #1177: started
2026/05/25-23:00:36.664490 7fe4c9ffb6c0 Level-0 table #1177: 0 bytes OK
2026/05/25-23:00:36.670481 7fe4c9ffb6c0 Delete type=0 #1175
2026/05/25-23:00:36.687068 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at '!items!zwSNMO9HpiqUCMt8' @ 24 : 1
2026/05/25-23:00:36.687075 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.690125 7fe4c9ffb6c0 Generated table #1178@0: 4 keys, 990 bytes
2026/05/25-23:00:36.690136 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 990 bytes
2026/05/25-23:00:36.697155 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.697213 7fe4c9ffb6c0 Delete type=2 #1113
2026/05/25-23:00:36.703345 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!zwSNMO9HpiqUCMt8' @ 24 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.879803 7f0ff57ff6c0 Recovering log #1223
2026/08/03-06:19:48.890084 7f0ff57ff6c0 Delete type=3 #1221
2026/08/03-06:19:48.890177 7f0ff57ff6c0 Delete type=0 #1223
2026/08/03-06:38:26.891447 7f0fa6ffd6c0 Level-0 table #1228: started
2026/08/03-06:38:26.891477 7f0fa6ffd6c0 Level-0 table #1228: 0 bytes OK
2026/08/03-06:38:26.898218 7f0fa6ffd6c0 Delete type=0 #1226
2026/08/03-06:38:26.913139 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.721390 7fe4caffd6c0 Log #1172: 0 ops saved to Table #1173 OK
2026/05/25-23:00:12.721495 7fe4caffd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/effets-exemples/001172.log: OK
2026/05/25-23:00:12.721563 7fe4caffd6c0 Table #1113: 4 entries OK
2026/05/25-23:00:12.725085 7fe4caffd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/effets-exemples; recovered 1 files; 990 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.971932 7f0fa7fff6c0 Recovering log #1219
2026/08/03-05:42:24.003012 7f0fa7fff6c0 Delete type=3 #1217
2026/08/03-05:42:24.003097 7f0fa7fff6c0 Delete type=0 #1219
2026/08/03-06:19:13.219392 7f0fa6ffd6c0 Level-0 table #1224: started
2026/08/03-06:19:13.219417 7f0fa6ffd6c0 Level-0 table #1224: 0 bytes OK
2026/08/03-06:19:13.225913 7f0fa6ffd6c0 Delete type=0 #1222
2026/08/03-06:19:13.239931 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001177
MANIFEST-001228
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.540722 7fe4cbfff6c0 Delete type=3 #1
2026/05/25-23:00:36.471926 7fe4c9ffb6c0 Level-0 table #1180: started
2026/05/25-23:00:36.471937 7fe4c9ffb6c0 Level-0 table #1180: 0 bytes OK
2026/05/25-23:00:36.477925 7fe4c9ffb6c0 Delete type=0 #1178
2026/05/25-23:00:36.503503 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at '!items!yE8UH6YAgNGjKDEu' @ 499 : 1
2026/05/25-23:00:36.503506 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.506759 7fe4c9ffb6c0 Generated table #1181@0: 43 keys, 9886 bytes
2026/05/25-23:00:36.506764 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 9886 bytes
2026/05/25-23:00:36.513480 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.513514 7fe4c9ffb6c0 Delete type=2 #1116
2026/05/25-23:00:36.523452 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!yE8UH6YAgNGjKDEu' @ 499 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.722782 7f0ff57ff6c0 Recovering log #1226
2026/08/03-06:19:48.732938 7f0ff57ff6c0 Delete type=3 #1224
2026/08/03-06:19:48.733013 7f0ff57ff6c0 Delete type=0 #1226
2026/08/03-06:38:26.811182 7f0fa6ffd6c0 Level-0 table #1231: started
2026/08/03-06:38:26.811213 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
2026/08/03-06:38:26.817698 7f0fa6ffd6c0 Delete type=0 #1229
2026/08/03-06:38:26.824339 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.526059 7fe4cbfff6c0 Log #1175: 0 ops saved to Table #1176 OK
2026/05/25-23:00:12.526152 7fe4cbfff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/equipment/001175.log: OK
2026/05/25-23:00:12.526242 7fe4cbfff6c0 Table #1116: 43 entries OK
2026/05/25-23:00:12.529350 7fe4cbfff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/equipment; recovered 1 files; 9886 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.605916 7f0fa7fff6c0 Recovering log #1222
2026/08/03-05:42:23.631047 7f0fa7fff6c0 Delete type=3 #1220
2026/08/03-05:42:23.631116 7f0fa7fff6c0 Delete type=0 #1222
2026/08/03-06:19:13.148540 7f0fa6ffd6c0 Level-0 table #1227: started
2026/08/03-06:19:13.148573 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
2026/08/03-06:19:13.155217 7f0fa6ffd6c0 Delete type=0 #1225
2026/08/03-06:19:13.162717 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001176
MANIFEST-001227
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.667051 7fe4cb7fe6c0 Delete type=3 #1
2026/05/25-23:00:36.591667 7fe4c9ffb6c0 Level-0 table #1179: started
2026/05/25-23:00:36.591691 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
2026/05/25-23:00:36.598377 7fe4c9ffb6c0 Delete type=0 #1177
2026/05/25-23:00:36.611349 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at '!items!vGydqADwTsHZ9B3j' @ 189 : 1
2026/05/25-23:00:36.611355 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.615369 7fe4c9ffb6c0 Generated table #1180@0: 8 keys, 3773 bytes
2026/05/25-23:00:36.615379 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 3773 bytes
2026/05/25-23:00:36.621333 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.621380 7fe4c9ffb6c0 Delete type=2 #1115
2026/05/25-23:00:36.648726 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!vGydqADwTsHZ9B3j' @ 189 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.822051 7f0fa7fff6c0 Recovering log #1225
2026/08/03-06:19:48.832528 7f0fa7fff6c0 Delete type=3 #1223
2026/08/03-06:19:48.832595 7f0fa7fff6c0 Delete type=0 #1225
2026/08/03-06:38:26.861128 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.861152 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.869011 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.883307 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.653101 7fe4cb7fe6c0 Log #1174: 0 ops saved to Table #1175 OK
2026/05/25-23:00:12.653154 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/fightoptions/001174.log: OK
2026/05/25-23:00:12.653192 7fe4cb7fe6c0 Table #1115: 8 entries OK
2026/05/25-23:00:12.656127 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/fightoptions; recovered 1 files; 3773 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.855691 7f0fa7fff6c0 Recovering log #1221
2026/08/03-05:42:23.883917 7f0fa7fff6c0 Delete type=3 #1219
2026/08/03-05:42:23.884004 7f0fa7fff6c0 Delete type=0 #1221
2026/08/03-06:19:13.198502 7f0fa6ffd6c0 Level-0 table #1226: started
2026/08/03-06:19:13.198527 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/08/03-06:19:13.205386 7f0fa6ffd6c0 Delete type=0 #1224
2026/08/03-06:19:13.219368 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000659
MANIFEST-000710
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.682843 7fe4cb7fe6c0 Delete type=3 #1
2026/05/25-23:00:36.604632 7fe4c9ffb6c0 Level-0 table #662: started
2026/05/25-23:00:36.604650 7fe4c9ffb6c0 Level-0 table #662: 0 bytes OK
2026/05/25-23:00:36.611270 7fe4c9ffb6c0 Delete type=0 #660
2026/05/25-23:00:36.638182 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at '!items!wYEpnhbyYaMkaNdL' @ 150 : 1
2026/05/25-23:00:36.638188 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.641715 7fe4c9ffb6c0 Generated table #663@0: 22 keys, 11387 bytes
2026/05/25-23:00:36.641727 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 11387 bytes
2026/05/25-23:00:36.648601 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.648646 7fe4c9ffb6c0 Delete type=2 #598
2026/05/25-23:00:36.658117 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!wYEpnhbyYaMkaNdL' @ 150 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.835817 7f0ff57ff6c0 Recovering log #708
2026/08/03-06:19:48.845651 7f0ff57ff6c0 Delete type=3 #706
2026/08/03-06:19:48.845733 7f0ff57ff6c0 Delete type=0 #708
2026/08/03-06:38:26.869191 7f0fa6ffd6c0 Level-0 table #713: started
2026/08/03-06:38:26.869223 7f0fa6ffd6c0 Level-0 table #713: 0 bytes OK
2026/08/03-06:38:26.875780 7f0fa6ffd6c0 Delete type=0 #711
2026/08/03-06:38:26.883321 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.669439 7fe4cb7fe6c0 Log #657: 0 ops saved to Table #658 OK
2026/05/25-23:00:12.669482 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/fightoptionsfanmade/000657.log: OK
2026/05/25-23:00:12.669524 7fe4cb7fe6c0 Table #598: 22 entries OK
2026/05/25-23:00:12.672417 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/fightoptionsfanmade; recovered 1 files; 11387 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.887819 7f0ff57ff6c0 Recovering log #704
2026/08/03-05:42:23.911535 7f0ff57ff6c0 Delete type=3 #702
2026/08/03-05:42:23.911621 7f0ff57ff6c0 Delete type=0 #704
2026/08/03-06:19:13.205536 7f0fa6ffd6c0 Level-0 table #709: started
2026/08/03-06:19:13.205564 7f0fa6ffd6c0 Level-0 table #709: 0 bytes OK
2026/08/03-06:19:13.211940 7f0fa6ffd6c0 Delete type=0 #707
2026/08/03-06:19:13.219382 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001177
MANIFEST-001228
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.465812 7fe4ca7fc6c0 Delete type=3 #1
2026/05/25-23:00:36.395308 7fe4c9ffb6c0 Level-0 table #1180: started
2026/05/25-23:00:36.395326 7fe4c9ffb6c0 Level-0 table #1180: 0 bytes OK
2026/05/25-23:00:36.402987 7fe4c9ffb6c0 Delete type=0 #1178
2026/05/25-23:00:36.429555 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at '!items!znd0K3b7HzYpdehs' @ 389 : 1
2026/05/25-23:00:36.429562 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.433153 7fe4c9ffb6c0 Generated table #1181@0: 44 keys, 16594 bytes
2026/05/25-23:00:36.433159 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 16594 bytes
2026/05/25-23:00:36.439742 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.439771 7fe4c9ffb6c0 Delete type=2 #1116
2026/05/25-23:00:36.458792 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!znd0K3b7HzYpdehs' @ 389 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.667201 7f0fa7fff6c0 Recovering log #1226
2026/08/03-06:19:48.678016 7f0fa7fff6c0 Delete type=3 #1224
2026/08/03-06:19:48.678104 7f0fa7fff6c0 Delete type=0 #1226
2026/08/03-06:38:26.776208 7f0fa6ffd6c0 Level-0 table #1231: started
2026/08/03-06:38:26.776233 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
2026/08/03-06:38:26.782751 7f0fa6ffd6c0 Delete type=0 #1229
2026/08/03-06:38:26.797096 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.450612 7fe4ca7fc6c0 Log #1175: 0 ops saved to Table #1176 OK
2026/05/25-23:00:12.450694 7fe4ca7fc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/flaws/001175.log: OK
2026/05/25-23:00:12.450776 7fe4ca7fc6c0 Table #1116: 44 entries OK
2026/05/25-23:00:12.453884 7fe4ca7fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/flaws; recovered 1 files; 16594 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.489449 7f0fa7fff6c0 Recovering log #1222
2026/08/03-05:42:23.512550 7f0fa7fff6c0 Delete type=3 #1220
2026/08/03-05:42:23.512605 7f0fa7fff6c0 Delete type=0 #1222
2026/08/03-06:19:13.119144 7f0fa6ffd6c0 Level-0 table #1227: started
2026/08/03-06:19:13.119176 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
2026/08/03-06:19:13.126416 7f0fa6ffd6c0 Delete type=0 #1225
2026/08/03-06:19:13.133390 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001176
MANIFEST-001227
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.629825 7fe4cb7fe6c0 Delete type=3 #1
2026/05/25-23:00:36.565124 7fe4c9ffb6c0 Level-0 table #1179: started
2026/05/25-23:00:36.565137 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
2026/05/25-23:00:36.571137 7fe4c9ffb6c0 Delete type=0 #1177
2026/05/25-23:00:36.582175 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at '!items!vaAQiuAHdyQrQiUX' @ 149 : 1
2026/05/25-23:00:36.582181 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.585512 7fe4c9ffb6c0 Generated table #1180@0: 18 keys, 7450 bytes
2026/05/25-23:00:36.585530 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 7450 bytes
2026/05/25-23:00:36.591453 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.591531 7fe4c9ffb6c0 Delete type=2 #1115
2026/05/25-23:00:36.604624 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!vaAQiuAHdyQrQiUX' @ 149 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.794414 7f0ff57ff6c0 Recovering log #1225
2026/08/03-06:19:48.805180 7f0ff57ff6c0 Delete type=3 #1223
2026/08/03-06:19:48.805252 7f0ff57ff6c0 Delete type=0 #1225
2026/08/03-06:38:26.838922 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.838945 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.846070 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.853929 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.615545 7fe4cb7fe6c0 Log #1174: 0 ops saved to Table #1175 OK
2026/05/25-23:00:12.615617 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/languages/001174.log: OK
2026/05/25-23:00:12.615697 7fe4cb7fe6c0 Table #1115: 18 entries OK
2026/05/25-23:00:12.618760 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/languages; recovered 1 files; 7450 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.792000 7f0fa7fff6c0 Recovering log #1221
2026/08/03-05:42:23.819679 7f0fa7fff6c0 Delete type=3 #1219
2026/08/03-05:42:23.819773 7f0fa7fff6c0 Delete type=0 #1221
2026/08/03-06:19:13.184774 7f0fa6ffd6c0 Level-0 table #1226: started
2026/08/03-06:19:13.184798 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/08/03-06:19:13.191255 7f0fa6ffd6c0 Delete type=0 #1224
2026/08/03-06:19:13.198489 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001176
MANIFEST-001227
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.718517 7fe4cb7fe6c0 Delete type=3 #1
2026/05/25-23:00:36.658125 7fe4c9ffb6c0 Level-0 table #1179: started
2026/05/25-23:00:36.658144 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
2026/05/25-23:00:36.664404 7fe4c9ffb6c0 Delete type=0 #1177
2026/05/25-23:00:36.677369 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at '!items!xVWrSPiX0Nwccsn6' @ 336 : 1
2026/05/25-23:00:36.677376 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.681106 7fe4c9ffb6c0 Generated table #1180@0: 42 keys, 14599 bytes
2026/05/25-23:00:36.681116 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 14599 bytes
2026/05/25-23:00:36.686895 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.686963 7fe4c9ffb6c0 Delete type=2 #1115
2026/05/25-23:00:36.703337 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!xVWrSPiX0Nwccsn6' @ 336 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.864887 7f0fa7fff6c0 Recovering log #1225
2026/08/03-06:19:48.875810 7f0fa7fff6c0 Delete type=3 #1223
2026/08/03-06:19:48.875893 7f0fa7fff6c0 Delete type=0 #1225
2026/08/03-06:38:26.883664 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.883708 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.891272 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.913109 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.703228 7fe4cb7fe6c0 Log #1174: 0 ops saved to Table #1175 OK
2026/05/25-23:00:12.703315 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/objets-alchimie/001174.log: OK
2026/05/25-23:00:12.703397 7fe4cb7fe6c0 Table #1115: 42 entries OK
2026/05/25-23:00:12.707340 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/objets-alchimie; recovered 1 files; 14599 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.943199 7f0ff57ff6c0 Recovering log #1221
2026/08/03-05:42:23.967941 7f0ff57ff6c0 Delete type=3 #1219
2026/08/03-05:42:23.968044 7f0ff57ff6c0 Delete type=0 #1221
2026/08/03-06:19:13.212107 7f0fa6ffd6c0 Level-0 table #1226: started
2026/08/03-06:19:13.212132 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/08/03-06:19:13.219215 7f0fa6ffd6c0 Delete type=0 #1224
2026/08/03-06:19:13.226057 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001176
MANIFEST-001227
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.503038 7fe4caffd6c0 Delete type=3 #1
2026/05/25-23:00:36.458919 7fe4c9ffb6c0 Level-0 table #1179: started
2026/05/25-23:00:36.458934 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
2026/05/25-23:00:36.465627 7fe4c9ffb6c0 Delete type=0 #1177
2026/05/25-23:00:36.484261 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at '!items!zIlZmEd9WAA473UX' @ 176 : 1
2026/05/25-23:00:36.484265 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.487711 7fe4c9ffb6c0 Generated table #1180@0: 22 keys, 23064 bytes
2026/05/25-23:00:36.487715 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 23064 bytes
2026/05/25-23:00:36.493995 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.494030 7fe4c9ffb6c0 Delete type=2 #1115
2026/05/25-23:00:36.523429 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!zIlZmEd9WAA473UX' @ 176 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.695837 7f0ff57ff6c0 Recovering log #1225
2026/08/03-06:19:48.705530 7f0ff57ff6c0 Delete type=3 #1223
2026/08/03-06:19:48.705599 7f0ff57ff6c0 Delete type=0 #1225
2026/08/03-06:38:26.797538 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.797600 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.804168 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.824310 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.487957 7fe4caffd6c0 Log #1174: 0 ops saved to Table #1175 OK
2026/05/25-23:00:12.488055 7fe4caffd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/origins/001174.log: OK
2026/05/25-23:00:12.488177 7fe4caffd6c0 Table #1115: 22 entries OK
2026/05/25-23:00:12.491392 7fe4caffd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/origins; recovered 1 files; 23064 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.545274 7f0fa7fff6c0 Recovering log #1221
2026/08/03-05:42:23.572814 7f0fa7fff6c0 Delete type=3 #1219
2026/08/03-05:42:23.572881 7f0fa7fff6c0 Delete type=0 #1221
2026/08/03-06:19:13.133747 7f0fa6ffd6c0 Level-0 table #1226: started
2026/08/03-06:19:13.133792 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/08/03-06:19:13.140416 7f0fa6ffd6c0 Delete type=0 #1224
2026/08/03-06:19:13.162688 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001176
MANIFEST-001227
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.699946 7fe4cb7fe6c0 Delete type=3 #1
2026/05/25-23:00:36.632167 7fe4c9ffb6c0 Level-0 table #1179: started
2026/05/25-23:00:36.632188 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
2026/05/25-23:00:36.638114 7fe4c9ffb6c0 Delete type=0 #1177
2026/05/25-23:00:36.648745 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at '!items!y9NHZCxKXMZEqcRo' @ 296 : 1
2026/05/25-23:00:36.648750 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.652142 7fe4c9ffb6c0 Generated table #1180@0: 37 keys, 13209 bytes
2026/05/25-23:00:36.652152 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 13209 bytes
2026/05/25-23:00:36.657985 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.658034 7fe4c9ffb6c0 Delete type=2 #1115
2026/05/25-23:00:36.670553 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!y9NHZCxKXMZEqcRo' @ 296 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.850191 7f0ff4ffe6c0 Recovering log #1225
2026/08/03-06:19:48.860917 7f0ff4ffe6c0 Delete type=3 #1223
2026/08/03-06:19:48.860985 7f0ff4ffe6c0 Delete type=0 #1225
2026/08/03-06:38:26.875945 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.875978 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.883107 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.883632 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.685622 7fe4cb7fe6c0 Log #1174: 0 ops saved to Table #1175 OK
2026/05/25-23:00:12.685703 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/potions-alchimie/001174.log: OK
2026/05/25-23:00:12.685805 7fe4cb7fe6c0 Table #1115: 37 entries OK
2026/05/25-23:00:12.688945 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/potions-alchimie; recovered 1 files; 13209 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.915462 7f0fa7fff6c0 Recovering log #1221
2026/08/03-05:42:23.939860 7f0fa7fff6c0 Delete type=3 #1219
2026/08/03-05:42:23.939948 7f0fa7fff6c0 Delete type=0 #1221
2026/08/03-06:19:13.226070 7f0fa6ffd6c0 Level-0 table #1226: started
2026/08/03-06:19:13.226094 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/08/03-06:19:13.233320 7f0fa6ffd6c0 Delete type=0 #1224
2026/08/03-06:19:13.246852 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001176
MANIFEST-001227
+7 -11
View File
@@ -1,11 +1,7 @@
2026/05/25-23:00:12.522897 7fe4ca7fc6c0 Delete type=3 #1
2026/05/25-23:00:36.465675 7fe4c9ffb6c0 Level-0 table #1179: started
2026/05/25-23:00:36.465687 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
2026/05/25-23:00:36.471885 7fe4c9ffb6c0 Delete type=0 #1177
2026/05/25-23:00:36.494110 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at '!items!oWexVALVtDXmedMy' @ 64 : 1
2026/05/25-23:00:36.494114 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
2026/05/25-23:00:36.497582 7fe4c9ffb6c0 Generated table #1180@0: 8 keys, 11498 bytes
2026/05/25-23:00:36.497587 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 11498 bytes
2026/05/25-23:00:36.503422 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/05/25-23:00:36.503448 7fe4c9ffb6c0 Delete type=2 #1115
2026/05/25-23:00:36.523443 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!oWexVALVtDXmedMy' @ 64 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2026/08/03-06:19:48.708521 7f0fa77fe6c0 Recovering log #1225
2026/08/03-06:19:48.719628 7f0fa77fe6c0 Delete type=3 #1223
2026/08/03-06:19:48.719711 7f0fa77fe6c0 Delete type=0 #1225
2026/08/03-06:38:26.804334 7f0fa6ffd6c0 Level-0 table #1230: started
2026/08/03-06:38:26.804369 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/08/03-06:38:26.811030 7f0fa6ffd6c0 Delete type=0 #1228
2026/08/03-06:38:26.824328 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
+7 -4
View File
@@ -1,4 +1,7 @@
2026/05/25-23:00:12.506036 7fe4ca7fc6c0 Log #1174: 0 ops saved to Table #1175 OK
2026/05/25-23:00:12.506131 7fe4ca7fc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/races/001174.log: OK
2026/05/25-23:00:12.506224 7fe4ca7fc6c0 Table #1115: 8 entries OK
2026/05/25-23:00:12.509949 7fe4ca7fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/races; recovered 1 files; 11498 bytes. Some data may have been lost. ****
2026/08/03-05:42:23.576402 7f0fa77fe6c0 Recovering log #1221
2026/08/03-05:42:23.602364 7f0fa77fe6c0 Delete type=3 #1219
2026/08/03-05:42:23.602424 7f0fa77fe6c0 Delete type=0 #1221
2026/08/03-06:19:13.140563 7f0fa6ffd6c0 Level-0 table #1226: started
2026/08/03-06:19:13.140591 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/08/03-06:19:13.148391 7f0fa6ffd6c0 Delete type=0 #1224
2026/08/03-06:19:13.162705 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.

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