Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d4f024f910 | |||
| 3eab0ded89 | |||
| 7d9aaa0085 | |||
| fcf5c10346 | |||
| 71b384c963 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -8,3 +8,4 @@ todo.md
|
|||||||
/jsconfig.json
|
/jsconfig.json
|
||||||
/package.json
|
/package.json
|
||||||
/package-lock.json
|
/package-lock.json
|
||||||
|
.github/
|
||||||
|
|||||||
@@ -2678,6 +2678,32 @@ textarea {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.d20-impair {
|
||||||
|
text-align: center;
|
||||||
|
flex: 1;
|
||||||
|
padding: 2px 6px;
|
||||||
|
background: rgba(255, 152, 0, 0.15);
|
||||||
|
border: 1px dashed #ff9800;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-size: 0.8rem !important;
|
||||||
|
color: #b36200 !important;
|
||||||
|
|
||||||
|
i {
|
||||||
|
color: #ff9800 !important;
|
||||||
|
font-size: 0.85rem !important;
|
||||||
|
display: inline !important;
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.dice-value {
|
||||||
|
font-size: 0.8rem !important;
|
||||||
|
display: inline !important;
|
||||||
|
font-weight: normal !important;
|
||||||
|
color: #b36200 !important;
|
||||||
|
text-shadow: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.predilection-section {
|
.predilection-section {
|
||||||
padding: 8px 10px;
|
padding: 8px 10px;
|
||||||
background: rgba(156, 39, 176, 0.1);
|
background: rgba(156, 39, 176, 0.1);
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ export default class HawkmoonActorSheet extends HandlebarsApplicationMixin(found
|
|||||||
},
|
},
|
||||||
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: "form" }],
|
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: "form" }],
|
||||||
actions: {
|
actions: {
|
||||||
editImage: HawkmoonActorSheet.#onEditImage,
|
//editImage: HawkmoonActorSheet.#onEditImage,
|
||||||
toggleSheet: HawkmoonActorSheet.#onToggleSheet,
|
toggleSheet: HawkmoonActorSheet.#onToggleSheet,
|
||||||
editItem: HawkmoonActorSheet.#onEditItem,
|
editItem: HawkmoonActorSheet.#onEditItem,
|
||||||
deleteItem: HawkmoonActorSheet.#onDeleteItem,
|
deleteItem: HawkmoonActorSheet.#onDeleteItem,
|
||||||
@@ -335,7 +335,7 @@ export default class HawkmoonActorSheet extends HandlebarsApplicationMixin(found
|
|||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
static async #onEditImage(event, target) {
|
static async #onEditImage(event, target) {
|
||||||
const fp = new FilePicker({
|
const fp = new foundry.applications.apps.FilePicker.implementation({
|
||||||
type: "image",
|
type: "image",
|
||||||
current: this.actor.img,
|
current: this.actor.img,
|
||||||
callback: (path) => {
|
callback: (path) => {
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ export class HawkmoonActor extends Actor {
|
|||||||
let combat = this.getCombatValues()
|
let combat = this.getCombatValues()
|
||||||
if (arme.system.typearme == "contact" || arme.system.typearme == "contactjet") {
|
if (arme.system.typearme == "contact" || arme.system.typearme == "contactjet") {
|
||||||
let bonusDefense = this.getBonusDefenseFromTalents()
|
let bonusDefense = this.getBonusDefenseFromTalents()
|
||||||
arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "mêlée"))
|
arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "mêlée") ?? { system: { niveau: 0 } })
|
||||||
arme.system.attrKey = "pui"
|
arme.system.attrKey = "pui"
|
||||||
arme.system.totalDegats = arme.system.degats + "+" + combat.bonusDegatsTotal
|
arme.system.totalDegats = arme.system.degats + "+" + combat.bonusDegatsTotal
|
||||||
arme.system.totalOffensif = this.system.attributs.pui.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff + (this.system.combat.monte ? 3 : 0)
|
arme.system.totalOffensif = this.system.attributs.pui.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff + (this.system.combat.monte ? 3 : 0)
|
||||||
@@ -86,7 +86,7 @@ export class HawkmoonActor extends Actor {
|
|||||||
arme.system.isDistance = false
|
arme.system.isDistance = false
|
||||||
}
|
}
|
||||||
if (arme.system.typearme == "jet" || arme.system.typearme == "tir") {
|
if (arme.system.typearme == "jet" || arme.system.typearme == "tir") {
|
||||||
arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "armes à distance"))
|
arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "armes à distance") ?? { system: { niveau: 0 } })
|
||||||
arme.system.attrKey = "adr"
|
arme.system.attrKey = "adr"
|
||||||
arme.system.totalOffensif = this.system.attributs.adr.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff
|
arme.system.totalOffensif = this.system.attributs.adr.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff
|
||||||
arme.system.totalDegats = arme.system.degats
|
arme.system.totalDegats = arme.system.degats
|
||||||
@@ -188,7 +188,8 @@ export class HawkmoonActor extends Actor {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
getVitesseBase() {
|
getVitesseBase() {
|
||||||
return 5 + __vitesseBonus[this.system.attributs.adr.value]
|
const idx = Math.min(this.system.attributs.adr.value, __vitesseBonus.length - 1)
|
||||||
|
return 5 + (__vitesseBonus[idx] ?? 0)
|
||||||
}
|
}
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
getProtection() {
|
getProtection() {
|
||||||
@@ -236,6 +237,9 @@ export class HawkmoonActor extends Actor {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
prepareBaseData() {
|
prepareBaseData() {
|
||||||
|
if (game.release.generation >= 14) {
|
||||||
|
super.prepareBaseData();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
@@ -305,7 +309,7 @@ export class HawkmoonActor extends Actor {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
checkAttribut(attribut, minLevel) {
|
checkAttribut(attribut, minLevel) {
|
||||||
let attr = this.system.attributs.find(at => at.labelnorm == attribut.toLowerCase())
|
let attr = Object.values(this.system.attributs).find(at => at.labelnorm == attribut.toLowerCase())
|
||||||
if (attr && attr.value >= minLevel) {
|
if (attr && attr.value >= minLevel) {
|
||||||
return { isValid: true, attr: foundry.utils.duplicate(attr) }
|
return { isValid: true, attr: foundry.utils.duplicate(attr) }
|
||||||
}
|
}
|
||||||
@@ -403,12 +407,13 @@ export class HawkmoonActor extends Actor {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
getAttribute(attrKey) {
|
getAttribute(attrKey) {
|
||||||
return this.system.attributes[attrKey]
|
return this.system.attributs[attrKey]
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
getBonusDegats() {
|
getBonusDegats() {
|
||||||
return 0;
|
const idx = Math.min(this.system.attributs.pui.value, __degatsBonus.length - 1)
|
||||||
|
return __degatsBonus[idx] ?? 0
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
@@ -655,6 +660,9 @@ export class HawkmoonActor extends Actor {
|
|||||||
let rollData = this.getCommonRollData(attrKey)
|
let rollData = this.getCommonRollData(attrKey)
|
||||||
rollData.multiplier = (isInit) ? 1 : 2
|
rollData.multiplier = (isInit) ? 1 : 2
|
||||||
rollData.isInit = isInit
|
rollData.isInit = isInit
|
||||||
|
if (isInit) {
|
||||||
|
rollData.initbonus = this.system.combat.initbonus ?? 0
|
||||||
|
}
|
||||||
await HawkmoonRollDialog.create(this, rollData)
|
await HawkmoonRollDialog.create(this, rollData)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,14 @@ export class HawkmoonCombat extends Combat {
|
|||||||
const c = this.combatants.get(cId);
|
const c = this.combatants.get(cId);
|
||||||
console.log("Init for combattant", c, ids)
|
console.log("Init for combattant", c, ids)
|
||||||
let id = c._id || c.id
|
let id = c._id || c.id
|
||||||
let initValue = c.actor ? c.actor.getInitiativeScore() : 0
|
let initValue = 0
|
||||||
|
if (c.actor) {
|
||||||
|
const combat = c.actor.getCombatValues()
|
||||||
|
const roll = await new Roll(`1d10 + ${combat.initTotal}`).roll()
|
||||||
|
await HawkmoonUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"))
|
||||||
|
initValue = roll.total
|
||||||
|
await c.actor.setFlag("world", "last-initiative", initValue)
|
||||||
|
}
|
||||||
await this.updateEmbeddedDocuments("Combatant", [ { _id: id, initiative: initValue } ]);
|
await this.updateEmbeddedDocuments("Combatant", [ { _id: id, initiative: initValue } ]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ export class HawkmoonCommands {
|
|||||||
if (command && command.func) {
|
if (command && command.func) {
|
||||||
const result = command.func(content, msg, params);
|
const result = command.func(content, msg, params);
|
||||||
if (result == false) {
|
if (result == false) {
|
||||||
RdDCommands._chatAnswer(msg, command.descr);
|
HawkmoonCommands._chatAnswer(msg, command.descr);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -98,8 +98,8 @@ export class HawkmoonCommands {
|
|||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
async createChar(msg) {
|
async createChar(msg) {
|
||||||
game.system.Hawkmoon.creator = new HawkmoonActorCreate();
|
game.system.hawkmoon.creator = new HawkmoonActorCreate();
|
||||||
game.system.Hawkmoon.creator.start();
|
game.system.hawkmoon.creator.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
|
|||||||
@@ -199,7 +199,7 @@ Hooks.on("chatMessage", (html, content, msg) => {
|
|||||||
if (content[0] == '/') {
|
if (content[0] == '/') {
|
||||||
let regExp = /(\S+)/g;
|
let regExp = /(\S+)/g;
|
||||||
let commands = content.match(regExp);
|
let commands = content.match(regExp);
|
||||||
if (game.system.mournblade.commands.processChatCommand(commands, content, msg)) {
|
if (game.system.hawkmoon.commands.processChatCommand(commands, content, msg)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -370,7 +370,7 @@ export class HawkmoonUtility {
|
|||||||
if (rollData.mainDice.includes("d20")) {
|
if (rollData.mainDice.includes("d20")) {
|
||||||
let diceValue = rollData.roll.terms[0].results[0].result
|
let diceValue = rollData.roll.terms[0].results[0].result
|
||||||
if (diceValue % 2 == 1) {
|
if (diceValue % 2 == 1) {
|
||||||
//console.log("PAIR/IMP2", diceValue)
|
rollData.isD20Impair = true
|
||||||
rollData.finalResult -= rollData.roll.terms[0].results[0].result // Substract value
|
rollData.finalResult -= rollData.roll.terms[0].results[0].result // Substract value
|
||||||
if (diceValue == 1 || diceValue == 11) {
|
if (diceValue == 1 || diceValue == 11) {
|
||||||
rollData.isDramatique = true
|
rollData.isDramatique = true
|
||||||
@@ -395,8 +395,8 @@ export class HawkmoonUtility {
|
|||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static applyCombativite(rollData, value) {
|
static applyCombativite(rollData, value) {
|
||||||
if (game.user.isGM) {
|
if (game.user.isGM) {
|
||||||
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
|
let defender = game.canvas.tokens.get(rollData.defenderTokenId)?.actor
|
||||||
defender.changeEtatCombativite(value)
|
defender?.changeEtatCombativite(value)
|
||||||
} else {
|
} else {
|
||||||
game.socket.emit("system.fvtt-hawkmoon-cyd", { msg: "msg_apply_combativite", data: { defenderTokenId: rollData.defenderTokenId, value } });
|
game.socket.emit("system.fvtt-hawkmoon-cyd", { msg: "msg_apply_combativite", data: { defenderTokenId: rollData.defenderTokenId, value } });
|
||||||
}
|
}
|
||||||
@@ -450,6 +450,9 @@ export class HawkmoonUtility {
|
|||||||
rollData.diceFormula += `+${rollData.attr.value}+${rollData.attr2.value}+${rollData.modificateur}`
|
rollData.diceFormula += `+${rollData.attr.value}+${rollData.attr2.value}+${rollData.modificateur}`
|
||||||
} else {
|
} else {
|
||||||
rollData.diceFormula += `+${rollData.attr.value}*${rollData.multiplier}+${rollData.modificateur}`
|
rollData.diceFormula += `+${rollData.attr.value}*${rollData.multiplier}+${rollData.modificateur}`
|
||||||
|
if (rollData.isInit && rollData.initbonus) {
|
||||||
|
rollData.diceFormula += `+${rollData.initbonus}`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bonus arme naturelle en défense
|
// Bonus arme naturelle en défense
|
||||||
@@ -535,8 +538,8 @@ export class HawkmoonUtility {
|
|||||||
this.applyCombativite(rollData, rollData.nbCombativitePerdu)
|
this.applyCombativite(rollData, rollData.nbCombativitePerdu)
|
||||||
}
|
}
|
||||||
if (rollData.coupBas && rollData.isSuccess && rollData.defenderTokenId) {
|
if (rollData.coupBas && rollData.isSuccess && rollData.defenderTokenId) {
|
||||||
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
|
let defender = game.canvas.tokens.get(rollData.defenderTokenId)?.actor
|
||||||
defender.incDecAdversite("bleue", -2)
|
defender?.incDecAdversite("bleue", -2)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -705,7 +708,8 @@ export class HawkmoonUtility {
|
|||||||
}
|
}
|
||||||
// Utiliser la cible déjà enregistrée si aucune cible n'est actuellement sélectionnée
|
// Utiliser la cible déjà enregistrée si aucune cible n'est actuellement sélectionnée
|
||||||
if (rollData.defenderTokenId) {
|
if (rollData.defenderTokenId) {
|
||||||
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
|
let defender = game.canvas.tokens.get(rollData.defenderTokenId)?.actor
|
||||||
|
if (!defender) return
|
||||||
console.log("updateWithTarget - Defender actor:", defender.name)
|
console.log("updateWithTarget - Defender actor:", defender.name)
|
||||||
rollData.armeDefense = defender.getBestDefenseValue()
|
rollData.armeDefense = defender.getBestDefenseValue()
|
||||||
console.log("updateWithTarget - armeDefense:", rollData.armeDefense)
|
console.log("updateWithTarget - armeDefense:", rollData.armeDefense)
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
MANIFEST-000377
|
MANIFEST-000418
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:07.997473 7f1c563fe6c0 Recovering log #375
|
2026/04/01-21:50:37.518083 7f3054fed6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:08.091717 7f1c563fe6c0 Delete type=0 #375
|
2026/04/01-21:52:26.545082 7f303effd6c0 Level-0 table #421: started
|
||||||
2026/01/09-17:40:08.091792 7f1c563fe6c0 Delete type=3 #373
|
2026/04/01-21:52:26.545109 7f303effd6c0 Level-0 table #421: 0 bytes OK
|
||||||
2026/01/09-17:44:28.072757 7f1c54bfb6c0 Level-0 table #380: started
|
2026/04/01-21:52:26.552279 7f303effd6c0 Delete type=0 #419
|
||||||
2026/01/09-17:44:28.072827 7f1c54bfb6c0 Level-0 table #380: 0 bytes OK
|
2026/04/01-21:52:26.566131 7f303effd6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 23 : 1
|
||||||
2026/01/09-17:44:28.079432 7f1c54bfb6c0 Delete type=0 #378
|
2026/04/01-21:52:26.566150 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.105106 7f1c54bfb6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.569834 7f303effd6c0 Generated table #422@0: 4 keys, 41333 bytes
|
||||||
2026/01/09-17:44:28.117150 7f1c54bfb6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.569864 7f303effd6c0 Compacted 1@0 + 0@1 files => 41333 bytes
|
||||||
|
2026/04/01-21:52:26.575990 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.576118 7f303effd6c0 Delete type=2 #389
|
||||||
|
2026/04/01-21:52:26.588378 7f303effd6c0 Manual compaction at level-0 from '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 23 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.713116 7f93ea7fc6c0 Recovering log #371
|
2026/04/01-21:50:37.488954 7f3054fed6c0 Log #416: 0 ops saved to Table #417 OK
|
||||||
2026/01/08-08:15:08.722804 7f93ea7fc6c0 Delete type=3 #369
|
2026/04/01-21:50:37.489105 7f3054fed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/aides-de-jeu/000416.log: OK
|
||||||
2026/01/08-08:15:08.722873 7f93ea7fc6c0 Delete type=0 #371
|
2026/04/01-21:50:37.491269 7f3054fed6c0 Table #389: 4 entries OK
|
||||||
2026/01/08-08:28:05.068912 7f93e9ffb6c0 Level-0 table #376: started
|
2026/04/01-21:50:37.498288 7f3054fed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/aides-de-jeu; recovered 1 files; 41333 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:05.068957 7f93e9ffb6c0 Level-0 table #376: 0 bytes OK
|
|
||||||
2026/01/08-08:28:05.106033 7f93e9ffb6c0 Delete type=0 #374
|
|
||||||
2026/01/08-08:28:05.217659 7f93e9ffb6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:05.217719 7f93e9ffb6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/aides-de-jeu/MANIFEST-000418
Normal file
BIN
packs/aides-de-jeu/MANIFEST-000418
Normal file
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000376
|
MANIFEST-000417
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:07.215100 7f1c563fe6c0 Recovering log #374
|
2026/04/01-21:50:37.248910 7f3054fed6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.308808 7f1c563fe6c0 Delete type=0 #374
|
2026/04/01-21:52:26.427980 7f303effd6c0 Level-0 table #420: started
|
||||||
2026/01/09-17:40:07.308890 7f1c563fe6c0 Delete type=3 #372
|
2026/04/01-21:52:26.428011 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||||
2026/01/09-17:44:28.036990 7f1c54bfb6c0 Level-0 table #379: started
|
2026/04/01-21:52:26.433923 7f303effd6c0 Delete type=0 #418
|
||||||
2026/01/09-17:44:28.037073 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK
|
2026/04/01-21:52:26.453062 7f303effd6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at '!items!wxrzP3NyiHiYnAMJ' @ 245 : 1
|
||||||
2026/01/09-17:44:28.043547 7f1c54bfb6c0 Delete type=0 #377
|
2026/04/01-21:52:26.453075 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.043784 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.456518 7f303effd6c0 Generated table #421@0: 49 keys, 14167 bytes
|
||||||
2026/01/09-17:44:28.043823 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.456558 7f303effd6c0 Compacted 1@0 + 0@1 files => 14167 bytes
|
||||||
|
2026/04/01-21:52:26.462451 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.462557 7f303effd6c0 Delete type=2 #388
|
||||||
|
2026/04/01-21:52:26.496365 7f303effd6c0 Manual compaction at level-0 from '!items!wxrzP3NyiHiYnAMJ' @ 245 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.609938 7f93eaffd6c0 Recovering log #370
|
2026/04/01-21:50:37.223069 7f3054fed6c0 Log #415: 0 ops saved to Table #416 OK
|
||||||
2026/01/08-08:15:08.619765 7f93eaffd6c0 Delete type=3 #368
|
2026/04/01-21:50:37.223194 7f3054fed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/armes/000415.log: OK
|
||||||
2026/01/08-08:15:08.619830 7f93eaffd6c0 Delete type=0 #370
|
2026/04/01-21:50:37.223591 7f3054fed6c0 Table #388: 49 entries OK
|
||||||
2026/01/08-08:28:04.844266 7f93e9ffb6c0 Level-0 table #375: started
|
2026/04/01-21:50:37.228238 7f3054fed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/armes; recovered 1 files; 14167 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.844294 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
|
|
||||||
2026/01/08-08:28:04.883113 7f93e9ffb6c0 Delete type=0 #373
|
|
||||||
2026/01/08-08:28:04.919770 7f93e9ffb6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:04.919798 7f93e9ffb6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/armes/MANIFEST-000417
Normal file
BIN
packs/armes/MANIFEST-000417
Normal file
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000376
|
MANIFEST-000417
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:07.033899 7f1c55bfd6c0 Recovering log #374
|
2026/04/01-21:50:37.187910 7f303f7fe6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.115529 7f1c55bfd6c0 Delete type=0 #374
|
2026/04/01-21:52:26.373765 7f303effd6c0 Level-0 table #420: started
|
||||||
2026/01/09-17:40:07.115669 7f1c55bfd6c0 Delete type=3 #372
|
2026/04/01-21:52:26.373792 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||||
2026/01/09-17:44:28.002424 7f1c54bfb6c0 Level-0 table #379: started
|
2026/04/01-21:52:26.380614 7f303effd6c0 Delete type=0 #418
|
||||||
2026/01/09-17:44:28.002453 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK
|
2026/04/01-21:52:26.407289 7f303effd6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at '!items!tFU5yISK6spdNWco' @ 40 : 1
|
||||||
2026/01/09-17:44:28.008591 7f1c54bfb6c0 Delete type=0 #377
|
2026/04/01-21:52:26.407300 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.016607 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.410410 7f303effd6c0 Generated table #421@0: 8 keys, 7054 bytes
|
||||||
2026/01/09-17:44:28.016651 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.410437 7f303effd6c0 Compacted 1@0 + 0@1 files => 7054 bytes
|
||||||
|
2026/04/01-21:52:26.416293 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.416365 7f303effd6c0 Delete type=2 #388
|
||||||
|
2026/04/01-21:52:26.427860 7f303effd6c0 Manual compaction at level-0 from '!items!tFU5yISK6spdNWco' @ 40 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.584392 7f93eb7fe6c0 Recovering log #370
|
2026/04/01-21:50:37.159826 7f303f7fe6c0 Log #415: 0 ops saved to Table #416 OK
|
||||||
2026/01/08-08:15:08.595037 7f93eb7fe6c0 Delete type=3 #368
|
2026/04/01-21:50:37.159989 7f303f7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences-creatures/000415.log: OK
|
||||||
2026/01/08-08:15:08.595129 7f93eb7fe6c0 Delete type=0 #370
|
2026/04/01-21:50:37.160305 7f303f7fe6c0 Table #388: 8 entries OK
|
||||||
2026/01/08-08:28:04.658126 7f93e9ffb6c0 Level-0 table #375: started
|
2026/04/01-21:50:37.165673 7f303f7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences-creatures; recovered 1 files; 7054 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.658154 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
|
|
||||||
2026/01/08-08:28:04.696322 7f93e9ffb6c0 Delete type=0 #373
|
|
||||||
2026/01/08-08:28:04.770719 7f93e9ffb6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:04.770775 7f93e9ffb6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/competences-creatures/MANIFEST-000417
Normal file
BIN
packs/competences-creatures/MANIFEST-000417
Normal file
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000376
|
MANIFEST-000417
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:06.860640 7f1c553fc6c0 Recovering log #374
|
2026/04/01-21:50:37.104198 7f30557ee6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:06.945970 7f1c553fc6c0 Delete type=0 #374
|
2026/04/01-21:52:26.361275 7f303effd6c0 Level-0 table #420: started
|
||||||
2026/01/09-17:40:06.946049 7f1c553fc6c0 Delete type=3 #372
|
2026/04/01-21:52:26.361358 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||||
2026/01/09-17:44:27.995662 7f1c54bfb6c0 Level-0 table #379: started
|
2026/04/01-21:52:26.367336 7f303effd6c0 Delete type=0 #418
|
||||||
2026/01/09-17:44:27.995696 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK
|
2026/04/01-21:52:26.387152 7f303effd6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at '!items!yI1zY5k8mAdx9wHK' @ 75 : 1
|
||||||
2026/01/09-17:44:28.002283 7f1c54bfb6c0 Delete type=0 #377
|
2026/04/01-21:52:26.387166 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.016595 7f1c54bfb6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.390737 7f303effd6c0 Generated table #421@0: 15 keys, 16660 bytes
|
||||||
2026/01/09-17:44:28.016641 7f1c54bfb6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.390778 7f303effd6c0 Compacted 1@0 + 0@1 files => 16660 bytes
|
||||||
|
2026/04/01-21:52:26.396659 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.396752 7f303effd6c0 Delete type=2 #388
|
||||||
|
2026/04/01-21:52:26.427832 7f303effd6c0 Manual compaction at level-0 from '!items!yI1zY5k8mAdx9wHK' @ 75 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.560342 7f93eaffd6c0 Recovering log #370
|
2026/04/01-21:50:35.374153 7f30557ee6c0 Log #415: 0 ops saved to Table #416 OK
|
||||||
2026/01/08-08:15:08.570307 7f93eaffd6c0 Delete type=3 #368
|
2026/04/01-21:50:35.374279 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences/000415.log: OK
|
||||||
2026/01/08-08:15:08.570398 7f93eaffd6c0 Delete type=0 #370
|
2026/04/01-21:50:35.376008 7f30557ee6c0 Table #388: 15 entries OK
|
||||||
2026/01/08-08:28:04.883258 7f93e9ffb6c0 Level-0 table #375: started
|
2026/04/01-21:50:35.381569 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences; recovered 1 files; 16660 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.883283 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
|
|
||||||
2026/01/08-08:28:04.919585 7f93e9ffb6c0 Delete type=0 #373
|
|
||||||
2026/01/08-08:28:04.919781 7f93e9ffb6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:04.919805 7f93e9ffb6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/competences/MANIFEST-000417
Normal file
BIN
packs/competences/MANIFEST-000417
Normal file
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000376
|
MANIFEST-000417
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:07.398683 7f1c55bfd6c0 Recovering log #374
|
2026/04/01-21:50:37.312218 7f30557ee6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.488253 7f1c55bfd6c0 Delete type=0 #374
|
2026/04/01-21:52:26.446652 7f303effd6c0 Level-0 table #420: started
|
||||||
2026/01/09-17:40:07.488337 7f1c55bfd6c0 Delete type=3 #372
|
2026/04/01-21:52:26.446674 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||||
2026/01/09-17:44:28.016766 7f1c54bfb6c0 Level-0 table #379: started
|
2026/04/01-21:52:26.452925 7f303effd6c0 Delete type=0 #418
|
||||||
2026/01/09-17:44:28.016805 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK
|
2026/04/01-21:52:26.484989 7f303effd6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at '!items!zYx0Ak2y1LNTcKlO' @ 755 : 1
|
||||||
2026/01/09-17:44:28.023141 7f1c54bfb6c0 Delete type=0 #377
|
2026/04/01-21:52:26.485002 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.043713 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.488643 7f303effd6c0 Generated table #421@0: 151 keys, 31834 bytes
|
||||||
2026/01/09-17:44:28.043764 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.488676 7f303effd6c0 Compacted 1@0 + 0@1 files => 31834 bytes
|
||||||
|
2026/04/01-21:52:26.496082 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.496215 7f303effd6c0 Delete type=2 #388
|
||||||
|
2026/04/01-21:52:26.496407 7f303effd6c0 Manual compaction at level-0 from '!items!zYx0Ak2y1LNTcKlO' @ 755 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.634608 7f93eb7fe6c0 Recovering log #370
|
2026/04/01-21:50:37.283827 7f30557ee6c0 Log #415: 0 ops saved to Table #416 OK
|
||||||
2026/01/08-08:15:08.644771 7f93eb7fe6c0 Delete type=3 #368
|
2026/04/01-21:50:37.283988 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/equipement/000415.log: OK
|
||||||
2026/01/08-08:15:08.644849 7f93eb7fe6c0 Delete type=0 #370
|
2026/04/01-21:50:37.285401 7f30557ee6c0 Table #388: 151 entries OK
|
||||||
2026/01/08-08:28:04.770939 7f93e9ffb6c0 Level-0 table #375: started
|
2026/04/01-21:50:37.292810 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/equipement; recovered 1 files; 31834 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.770974 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
|
|
||||||
2026/01/08-08:28:04.807757 7f93e9ffb6c0 Delete type=0 #373
|
|
||||||
2026/01/08-08:28:04.919742 7f93e9ffb6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:04.919789 7f93e9ffb6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/equipement/MANIFEST-000417
Normal file
BIN
packs/equipement/MANIFEST-000417
Normal file
Binary file not shown.
0
packs/equipement/lost/000382.log
Normal file
0
packs/equipement/lost/000382.log
Normal file
0
packs/equipement/lost/000415.log
Normal file
0
packs/equipement/lost/000415.log
Normal file
0
packs/historiques/000419.log
Normal file
0
packs/historiques/000419.log
Normal file
@@ -1 +1 @@
|
|||||||
MANIFEST-000376
|
MANIFEST-000417
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:07.118312 7f1c553fc6c0 Recovering log #374
|
2026/04/01-21:50:37.218059 7f303ffff6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.212316 7f1c553fc6c0 Delete type=0 #374
|
2026/04/01-21:52:26.367478 7f303effd6c0 Level-0 table #420: started
|
||||||
2026/01/09-17:40:07.212395 7f1c553fc6c0 Delete type=3 #372
|
2026/04/01-21:52:26.367515 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||||
2026/01/09-17:44:28.008871 7f1c54bfb6c0 Level-0 table #379: started
|
2026/04/01-21:52:26.373589 7f303effd6c0 Delete type=0 #418
|
||||||
2026/01/09-17:44:28.008958 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK
|
2026/04/01-21:52:26.396908 7f303effd6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at '!items!z1HtkvazCGHut7cz' @ 240 : 1
|
||||||
2026/01/09-17:44:28.016332 7f1c54bfb6c0 Delete type=0 #377
|
2026/04/01-21:52:26.396921 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.016621 7f1c54bfb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.400605 7f303effd6c0 Generated table #421@0: 48 keys, 19976 bytes
|
||||||
2026/01/09-17:44:28.016661 7f1c54bfb6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.400631 7f303effd6c0 Compacted 1@0 + 0@1 files => 19976 bytes
|
||||||
|
2026/04/01-21:52:26.407058 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.407177 7f303effd6c0 Delete type=2 #388
|
||||||
|
2026/04/01-21:52:26.427846 7f303effd6c0 Manual compaction at level-0 from '!items!z1HtkvazCGHut7cz' @ 240 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.597802 7f93ea7fc6c0 Recovering log #370
|
2026/04/01-21:50:37.191100 7f303ffff6c0 Log #415: 0 ops saved to Table #416 OK
|
||||||
2026/01/08-08:15:08.607783 7f93ea7fc6c0 Delete type=3 #368
|
2026/04/01-21:50:37.191694 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/historiques/000415.log: OK
|
||||||
2026/01/08-08:15:08.607847 7f93ea7fc6c0 Delete type=0 #370
|
2026/04/01-21:50:37.192374 7f303ffff6c0 Table #388: 48 entries OK
|
||||||
2026/01/08-08:28:04.733376 7f93e9ffb6c0 Level-0 table #375: started
|
2026/04/01-21:50:37.197077 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/historiques; recovered 1 files; 19976 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.733403 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
|
|
||||||
2026/01/08-08:28:04.770489 7f93e9ffb6c0 Delete type=0 #373
|
|
||||||
2026/01/08-08:28:04.770754 7f93e9ffb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:04.770794 7f93e9ffb6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/historiques/MANIFEST-000417
Normal file
BIN
packs/historiques/MANIFEST-000417
Normal file
Binary file not shown.
0
packs/historiques/lost/000382.log
Normal file
0
packs/historiques/lost/000382.log
Normal file
0
packs/historiques/lost/000415.log
Normal file
0
packs/historiques/lost/000415.log
Normal file
0
packs/mutations/000329.log
Normal file
0
packs/mutations/000329.log
Normal file
@@ -1 +1 @@
|
|||||||
MANIFEST-000286
|
MANIFEST-000327
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:06.948771 7f1c563fe6c0 Recovering log #284
|
2026/04/01-21:50:37.156100 7f30557ee6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.030884 7f1c563fe6c0 Delete type=0 #284
|
2026/04/01-21:52:26.380729 7f303effd6c0 Level-0 table #330: started
|
||||||
2026/01/09-17:40:07.030949 7f1c563fe6c0 Delete type=3 #282
|
2026/04/01-21:52:26.380762 7f303effd6c0 Level-0 table #330: 0 bytes OK
|
||||||
2026/01/09-17:44:27.988602 7f1c54bfb6c0 Level-0 table #289: started
|
2026/04/01-21:52:26.386955 7f303effd6c0 Delete type=0 #328
|
||||||
2026/01/09-17:44:27.988662 7f1c54bfb6c0 Level-0 table #289: 0 bytes OK
|
2026/04/01-21:52:26.416451 7f303effd6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at '!items!zttESycGKltfwCzJ' @ 811 : 1
|
||||||
2026/01/09-17:44:27.995503 7f1c54bfb6c0 Delete type=0 #287
|
2026/04/01-21:52:26.416461 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.016581 7f1c54bfb6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.420353 7f303effd6c0 Generated table #331@0: 167 keys, 58927 bytes
|
||||||
2026/01/09-17:44:28.016631 7f1c54bfb6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.420388 7f303effd6c0 Compacted 1@0 + 0@1 files => 58927 bytes
|
||||||
|
2026/04/01-21:52:26.427596 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.427710 7f303effd6c0 Delete type=2 #298
|
||||||
|
2026/04/01-21:52:26.427871 7f303effd6c0 Manual compaction at level-0 from '!items!zttESycGKltfwCzJ' @ 811 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.572263 7f93ebfff6c0 Recovering log #280
|
2026/04/01-21:50:37.107344 7f30557ee6c0 Log #325: 0 ops saved to Table #326 OK
|
||||||
2026/01/08-08:15:08.581752 7f93ebfff6c0 Delete type=3 #278
|
2026/04/01-21:50:37.107463 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/mutations/000325.log: OK
|
||||||
2026/01/08-08:15:08.581804 7f93ebfff6c0 Delete type=0 #280
|
2026/04/01-21:50:37.109027 7f30557ee6c0 Table #298: 167 entries OK
|
||||||
2026/01/08-08:28:04.623048 7f93e9ffb6c0 Level-0 table #285: started
|
2026/04/01-21:50:37.118243 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/mutations; recovered 1 files; 58927 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.623109 7f93e9ffb6c0 Level-0 table #285: 0 bytes OK
|
|
||||||
2026/01/08-08:28:04.657992 7f93e9ffb6c0 Delete type=0 #283
|
|
||||||
2026/01/08-08:28:04.770699 7f93e9ffb6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:04.770767 7f93e9ffb6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/mutations/MANIFEST-000327
Normal file
BIN
packs/mutations/MANIFEST-000327
Normal file
Binary file not shown.
0
packs/mutations/lost/000292.log
Normal file
0
packs/mutations/lost/000292.log
Normal file
0
packs/mutations/lost/000325.log
Normal file
0
packs/mutations/lost/000325.log
Normal file
0
packs/profils/000419.log
Normal file
0
packs/profils/000419.log
Normal file
@@ -1 +1 @@
|
|||||||
MANIFEST-000376
|
MANIFEST-000417
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:07.491383 7f1c563fe6c0 Recovering log #374
|
2026/04/01-21:50:37.342651 7f303ffff6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.586434 7f1c563fe6c0 Delete type=0 #374
|
2026/04/01-21:52:26.496497 7f303effd6c0 Level-0 table #420: started
|
||||||
2026/01/09-17:40:07.586511 7f1c563fe6c0 Delete type=3 #372
|
2026/04/01-21:52:26.496541 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||||
2026/01/09-17:44:28.051505 7f1c54bfb6c0 Level-0 table #379: started
|
2026/04/01-21:52:26.502642 7f303effd6c0 Delete type=0 #418
|
||||||
2026/01/09-17:44:28.051547 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK
|
2026/04/01-21:52:26.522927 7f303effd6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at '!items!tFQqcxmkS3MT6ASE' @ 75 : 1
|
||||||
2026/01/09-17:44:28.058087 7f1c54bfb6c0 Delete type=0 #377
|
2026/04/01-21:52:26.522944 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.072587 7f1c54bfb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.527492 7f303effd6c0 Generated table #421@0: 15 keys, 29941 bytes
|
||||||
2026/01/09-17:44:28.072630 7f1c54bfb6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.527526 7f303effd6c0 Compacted 1@0 + 0@1 files => 29941 bytes
|
||||||
|
2026/04/01-21:52:26.534565 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.534675 7f303effd6c0 Delete type=2 #388
|
||||||
|
2026/04/01-21:52:26.545065 7f303effd6c0 Manual compaction at level-0 from '!items!tFQqcxmkS3MT6ASE' @ 75 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.648157 7f93ea7fc6c0 Recovering log #370
|
2026/04/01-21:50:37.315932 7f303ffff6c0 Log #415: 0 ops saved to Table #416 OK
|
||||||
2026/01/08-08:15:08.657922 7f93ea7fc6c0 Delete type=3 #368
|
2026/04/01-21:50:37.316044 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/profils/000415.log: OK
|
||||||
2026/01/08-08:15:08.657990 7f93ea7fc6c0 Delete type=0 #370
|
2026/04/01-21:50:37.318377 7f303ffff6c0 Table #388: 15 entries OK
|
||||||
2026/01/08-08:28:04.807939 7f93e9ffb6c0 Level-0 table #375: started
|
2026/04/01-21:50:37.323861 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/profils; recovered 1 files; 29941 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.807972 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
|
|
||||||
2026/01/08-08:28:04.844126 7f93e9ffb6c0 Delete type=0 #373
|
|
||||||
2026/01/08-08:28:04.919757 7f93e9ffb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:04.919814 7f93e9ffb6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/profils/MANIFEST-000417
Normal file
BIN
packs/profils/MANIFEST-000417
Normal file
Binary file not shown.
0
packs/profils/lost/000382.log
Normal file
0
packs/profils/lost/000382.log
Normal file
0
packs/profils/lost/000415.log
Normal file
0
packs/profils/lost/000415.log
Normal file
0
packs/protections/000419.log
Normal file
0
packs/protections/000419.log
Normal file
@@ -1 +1 @@
|
|||||||
MANIFEST-000376
|
MANIFEST-000417
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:07.312206 7f1c56bff6c0 Recovering log #374
|
2026/04/01-21:50:37.281179 7f30557ee6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.395670 7f1c56bff6c0 Delete type=0 #374
|
2026/04/01-21:52:26.434016 7f303effd6c0 Level-0 table #420: started
|
||||||
2026/01/09-17:40:07.395743 7f1c56bff6c0 Delete type=3 #372
|
2026/04/01-21:52:26.434045 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||||
2026/01/09-17:44:28.030121 7f1c54bfb6c0 Level-0 table #379: started
|
2026/04/01-21:52:26.440140 7f303effd6c0 Delete type=0 #418
|
||||||
2026/01/09-17:44:28.030156 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK
|
2026/04/01-21:52:26.462672 7f303effd6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at '!items!yszkersMTE4p9VzP' @ 70 : 1
|
||||||
2026/01/09-17:44:28.036628 7f1c54bfb6c0 Delete type=0 #377
|
2026/04/01-21:52:26.462684 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.043749 7f1c54bfb6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.465883 7f303effd6c0 Generated table #421@0: 14 keys, 3496 bytes
|
||||||
2026/01/09-17:44:28.043794 7f1c54bfb6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.465922 7f303effd6c0 Compacted 1@0 + 0@1 files => 3496 bytes
|
||||||
|
2026/04/01-21:52:26.472735 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.472846 7f303effd6c0 Delete type=2 #388
|
||||||
|
2026/04/01-21:52:26.496383 7f303effd6c0 Manual compaction at level-0 from '!items!yszkersMTE4p9VzP' @ 70 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.621917 7f93ebfff6c0 Recovering log #370
|
2026/04/01-21:50:37.251714 7f30557ee6c0 Log #415: 0 ops saved to Table #416 OK
|
||||||
2026/01/08-08:15:08.632677 7f93ebfff6c0 Delete type=3 #368
|
2026/04/01-21:50:37.251834 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/protections/000415.log: OK
|
||||||
2026/01/08-08:15:08.632727 7f93ebfff6c0 Delete type=0 #370
|
2026/04/01-21:50:37.252077 7f30557ee6c0 Table #388: 14 entries OK
|
||||||
2026/01/08-08:28:04.696491 7f93e9ffb6c0 Level-0 table #375: started
|
2026/04/01-21:50:37.259533 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/protections; recovered 1 files; 3496 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.696521 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
|
|
||||||
2026/01/08-08:28:04.733225 7f93e9ffb6c0 Delete type=0 #373
|
|
||||||
2026/01/08-08:28:04.770736 7f93e9ffb6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:04.770784 7f93e9ffb6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/protections/MANIFEST-000417
Normal file
BIN
packs/protections/MANIFEST-000417
Normal file
Binary file not shown.
0
packs/protections/lost/000382.log
Normal file
0
packs/protections/lost/000382.log
Normal file
0
packs/protections/lost/000415.log
Normal file
0
packs/protections/lost/000415.log
Normal file
Binary file not shown.
0
packs/scenes/000259.log
Normal file
0
packs/scenes/000259.log
Normal file
@@ -1 +1 @@
|
|||||||
MANIFEST-000215
|
MANIFEST-000257
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
2026/01/09-17:40:07.897787 7f1c55bfd6c0 Recovering log #213
|
2026/04/01-21:50:37.485134 7f303f7fe6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.993513 7f1c55bfd6c0 Delete type=0 #213
|
2026/04/01-21:52:26.509551 7f303effd6c0 Level-0 table #260: started
|
||||||
2026/01/09-17:40:07.993589 7f1c55bfd6c0 Delete type=3 #211
|
2026/04/01-21:52:26.509586 7f303effd6c0 Level-0 table #260: 0 bytes OK
|
||||||
2026/01/09-17:44:28.065440 7f1c54bfb6c0 Level-0 table #218: started
|
2026/04/01-21:52:26.516307 7f303effd6c0 Delete type=0 #258
|
||||||
2026/01/09-17:44:28.065531 7f1c54bfb6c0 Level-0 table #218: 0 bytes OK
|
2026/04/01-21:52:26.534813 7f303effd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
2026/01/09-17:44:28.072412 7f1c54bfb6c0 Delete type=0 #216
|
|
||||||
2026/01/09-17:44:28.072612 7f1c54bfb6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/09-17:44:28.072640 7f1c54bfb6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
@@ -1,8 +1,3 @@
|
|||||||
2026/01/08-08:15:08.698526 7f93ebfff6c0 Recovering log #209
|
2026/04/01-21:50:37.458686 7f303f7fe6c0 Log #255: 0 ops saved to Table #256 OK
|
||||||
2026/01/08-08:15:08.709578 7f93ebfff6c0 Delete type=3 #207
|
2026/04/01-21:50:37.458799 7f303f7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/scenes/000255.log: OK
|
||||||
2026/01/08-08:15:08.709656 7f93ebfff6c0 Delete type=0 #209
|
2026/04/01-21:50:37.463339 7f303f7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/scenes; recovered 0 files; 0 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:05.031270 7f93e9ffb6c0 Level-0 table #214: started
|
|
||||||
2026/01/08-08:28:05.031324 7f93e9ffb6c0 Level-0 table #214: 0 bytes OK
|
|
||||||
2026/01/08-08:28:05.068560 7f93e9ffb6c0 Delete type=0 #212
|
|
||||||
2026/01/08-08:28:05.068827 7f93e9ffb6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:05.068856 7f93e9ffb6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/scenes/MANIFEST-000257
Normal file
BIN
packs/scenes/MANIFEST-000257
Normal file
Binary file not shown.
0
packs/scenes/lost/000221.log
Normal file
0
packs/scenes/lost/000221.log
Normal file
0
packs/scenes/lost/000255.log
Normal file
0
packs/scenes/lost/000255.log
Normal file
0
packs/tables/000414.log
Normal file
0
packs/tables/000414.log
Normal file
@@ -1 +1 @@
|
|||||||
MANIFEST-000372
|
MANIFEST-000412
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
2026/01/09-17:40:07.797094 7f1c563fe6c0 Recovering log #370
|
2026/04/01-21:50:37.455619 7f303ffff6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.894005 7f1c563fe6c0 Delete type=0 #370
|
2026/04/01-21:52:26.502788 7f303effd6c0 Level-0 table #415: started
|
||||||
2026/01/09-17:40:07.894111 7f1c563fe6c0 Delete type=3 #368
|
2026/04/01-21:52:26.502819 7f303effd6c0 Level-0 table #415: 0 bytes OK
|
||||||
2026/01/09-17:44:28.058315 7f1c54bfb6c0 Level-0 table #375: started
|
2026/04/01-21:52:26.509389 7f303effd6c0 Delete type=0 #413
|
||||||
2026/01/09-17:44:28.058367 7f1c54bfb6c0 Level-0 table #375: 0 bytes OK
|
2026/04/01-21:52:26.534800 7f303effd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
2026/01/09-17:44:28.065182 7f1c54bfb6c0 Delete type=0 #373
|
|
||||||
2026/01/09-17:44:28.072600 7f1c54bfb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
2026/01/08-08:15:08.685888 7f93ea7fc6c0 Recovering log #366
|
2026/04/01-21:50:37.430019 7f303ffff6c0 Log #410: 0 ops saved to Table #411 OK
|
||||||
2026/01/08-08:15:08.695712 7f93ea7fc6c0 Delete type=3 #364
|
2026/04/01-21:50:37.430172 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/tables/000410.log: OK
|
||||||
2026/01/08-08:15:08.695810 7f93ea7fc6c0 Delete type=0 #366
|
2026/04/01-21:50:37.436132 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/tables; recovered 0 files; 0 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.994881 7f93e9ffb6c0 Level-0 table #371: started
|
|
||||||
2026/01/08-08:28:04.994911 7f93e9ffb6c0 Level-0 table #371: 0 bytes OK
|
|
||||||
2026/01/08-08:28:05.031074 7f93e9ffb6c0 Delete type=0 #369
|
|
||||||
2026/01/08-08:28:05.068816 7f93e9ffb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
BIN
packs/tables/MANIFEST-000412
Normal file
BIN
packs/tables/MANIFEST-000412
Normal file
Binary file not shown.
0
packs/tables/lost/000378.log
Normal file
0
packs/tables/lost/000378.log
Normal file
0
packs/tables/lost/000410.log
Normal file
0
packs/tables/lost/000410.log
Normal file
0
packs/talents-cellule/000419.log
Normal file
0
packs/talents-cellule/000419.log
Normal file
@@ -1 +1 @@
|
|||||||
MANIFEST-000376
|
MANIFEST-000417
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
2026/01/09-17:40:07.682681 7f1c553fc6c0 Recovering log #374
|
2026/04/01-21:50:37.411494 7f303ffff6c0 Delete type=3 #1
|
||||||
2026/01/09-17:40:07.793786 7f1c553fc6c0 Delete type=0 #374
|
2026/04/01-21:52:26.516457 7f303effd6c0 Level-0 table #420: started
|
||||||
2026/01/09-17:40:07.793862 7f1c553fc6c0 Delete type=3 #372
|
2026/04/01-21:52:26.516489 7f303effd6c0 Level-0 table #420: 0 bytes OK
|
||||||
2026/01/09-17:44:28.043889 7f1c54bfb6c0 Level-0 table #379: started
|
2026/04/01-21:52:26.522696 7f303effd6c0 Delete type=0 #418
|
||||||
2026/01/09-17:44:28.043923 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK
|
2026/04/01-21:52:26.534828 7f303effd6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at '!items!yRTYaNKyXBX9wHhb' @ 95 : 1
|
||||||
2026/01/09-17:44:28.051367 7f1c54bfb6c0 Delete type=0 #377
|
2026/04/01-21:52:26.534837 7f303effd6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/01/09-17:44:28.072573 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.538178 7f303effd6c0 Generated table #421@0: 19 keys, 9342 bytes
|
||||||
2026/01/09-17:44:28.072621 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
2026/04/01-21:52:26.538231 7f303effd6c0 Compacted 1@0 + 0@1 files => 9342 bytes
|
||||||
|
2026/04/01-21:52:26.544795 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/04/01-21:52:26.544929 7f303effd6c0 Delete type=2 #388
|
||||||
|
2026/04/01-21:52:26.558679 7f303effd6c0 Manual compaction at level-0 from '!items!yRTYaNKyXBX9wHhb' @ 95 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
2026/01/08-08:15:08.673999 7f93eb7fe6c0 Recovering log #370
|
2026/04/01-21:50:37.375284 7f303ffff6c0 Log #415: 0 ops saved to Table #416 OK
|
||||||
2026/01/08-08:15:08.684134 7f93eb7fe6c0 Delete type=3 #368
|
2026/04/01-21:50:37.375423 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/talents-cellule/000415.log: OK
|
||||||
2026/01/08-08:15:08.684201 7f93eb7fe6c0 Delete type=0 #370
|
2026/04/01-21:50:37.377047 7f303ffff6c0 Table #388: 19 entries OK
|
||||||
2026/01/08-08:28:04.957304 7f93e9ffb6c0 Level-0 table #375: started
|
2026/04/01-21:50:37.384273 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/talents-cellule; recovered 1 files; 9342 bytes. Some data may have been lost. ****
|
||||||
2026/01/08-08:28:04.957333 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
|
|
||||||
2026/01/08-08:28:04.994734 7f93e9ffb6c0 Delete type=0 #373
|
|
||||||
2026/01/08-08:28:05.068802 7f93e9ffb6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
|
||||||
2026/01/08-08:28:05.068847 7f93e9ffb6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user