Fix lethargy + charaster race
All checks were successful
Release Creation / build (release) Successful in 1m7s
All checks were successful
Release Creation / build (release) Successful in 1m7s
This commit is contained in:
parent
b029aba2b6
commit
9035ad4bfb
@ -103,13 +103,13 @@ export const ATTACKER_AIM_CHOICES = {
|
||||
"focused": {label: "Focused (-8)", value: "-8"}
|
||||
}
|
||||
|
||||
export const SPELL_LETHARGY_DICE = {
|
||||
"spellLevel1": {dice: "D6", level: "1-5", value: "6"},
|
||||
"spellLevel6": {dice: "D8", level: "6-10", value: "8"},
|
||||
"spellLevel11": {dice: "D10", value: "10", level: "11-15"},
|
||||
"spellLevel16": {dice: "D12", value: "12", level: "16-20"},
|
||||
"spellLevel21": {dice: "D20", value: "20", level: "21-25"}
|
||||
}
|
||||
export const SPELL_LETHARGY_DICE = [
|
||||
{dice: "D6", level: "1-5", value: "6", maxLevel: 5},
|
||||
{dice: "D8", level: "6-10", value: "8", maxLevel: 10},
|
||||
{dice: "D10", value: "10", level: "11-15", maxLevel: 15},
|
||||
{dice: "D12", value: "12", level: "16-20", maxLevel: 20},
|
||||
{dice: "D20", value: "20", level: "21-25", maxLevel: 25}
|
||||
]
|
||||
|
||||
export const INITIATIVE_DICE_CHOICES_PER_CLASS = {
|
||||
"untrained": [
|
||||
|
@ -672,23 +672,32 @@ export default class LethalFantasyRoll extends Roll {
|
||||
rangedMode = "focusedAim"
|
||||
}
|
||||
|
||||
if (searchId.match("spellLevel")) {
|
||||
let spellConfig = SYSTEM.SPELL_LETHARGY_DICE[searchId]
|
||||
let formula = spellConfig.dice
|
||||
if (searchId.match("spell")) {
|
||||
searchId = searchId.replace("spell", "")
|
||||
let spell = actor.items.find(i => i.type === "spell" && i.id === searchId)
|
||||
let dice = LethalFantasyUtils.getLethargyDice(spell.system.level)
|
||||
if (options.rollProgressionCount <= spell.system.castingTime ) {
|
||||
let message = `Spell casting time : ${spell.name}, count : ${options.rollProgressionCount}/${spell.system.castingTime}`
|
||||
ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: actor }) })
|
||||
return
|
||||
}
|
||||
let formula = dice
|
||||
let roll = new Roll(formula)
|
||||
await roll.evaluate()
|
||||
let max = roll.dice[0].faces - 1
|
||||
let toCompare = Math.min(options.rollProgressionCount-spell.system.castingTime, max)
|
||||
let message
|
||||
if (options.rollProgressionCount <= roll.total ) {
|
||||
message = `Spell Lethargy ongoing ... (${roll.total}/${options.rollProgressionCount}, spell level ${spellConfig.level})`
|
||||
if (roll.total > toCompare) {
|
||||
message = `Spell Lethargy ongoing ... (${roll.total}/${toCompare}, spell level ${spell.system.level})`
|
||||
} else {
|
||||
let combat = game.combats.get(options.combatId)
|
||||
combat.resetProgression(options.combatantId)
|
||||
message = `Spell Lethargy ended ! (${roll.total}/${options.rollProgressionCount}, spell level ${spellConfig.level})`
|
||||
message = `Spell Lethargy ended ! (${roll.total}/${toCompare}, spell level ${spell.system.level})`
|
||||
}
|
||||
let msg = await roll.toMessage({ flavor: message }, { rollMode: rollContext.visibility })
|
||||
if (game?.dice3d) {
|
||||
await game.dice3d.waitFor3DAnimationByMessageID(msg.id)
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -296,12 +296,11 @@ export default class LethalFantasyCharacter extends foundry.abstract.TypeDataMod
|
||||
weaponsChoices.push({ id: `${w.id}focusedAim`, name: `${w.name} (Focused Aim: ${w.system.speed.focusedAim.toUpperCase()})`, combatProgressionDice: w.system.speed.focusedAim.toUpperCase() })
|
||||
}
|
||||
if (this.biodata.magicUser || this.biodata.clericUser) {
|
||||
// Get the max level of the spells owned
|
||||
weaponsChoices.push({ id: "spellLevel1", name: `Level 1-5 Spell/Miracle (D6)`, combatProgressionDice: "1D6" })
|
||||
weaponsChoices.push({ id: "spellLevel6", name: `Level 6-10 Spell/Miracle (D8)`, combatProgressionDice: "1D8" })
|
||||
weaponsChoices.push({ id: "spellLevel11", name: `Level 11-15 Spell/Miracle (D10)`, combatProgressionDice: "1D10" })
|
||||
weaponsChoices.push({ id: "spellLevel16", name: `Level 16-20 Spell/Miracle (D12)`, combatProgressionDice: "1D12" })
|
||||
weaponsChoices.push({ id: "spellLevel21", name: `Level 21-25 Spell/Miracle (D20)`, combatProgressionDice: "1D20" })
|
||||
let spells = this.parent.items.filter(i => i.type === "spell" || i.type === "miracle")
|
||||
for (let s of spells) {
|
||||
let dice = LethalFantasyUtils.getLethargyDice(s.system.level)
|
||||
weaponsChoices.push({ id: `spell${s.id}`, name: `${s.name} (Time: ${s.system.castingTime}, Lethargy: ${dice})`, combatProgressionDice: `${s.system.castingTime}+${dice}` })
|
||||
}
|
||||
}
|
||||
|
||||
let roll = await LethalFantasyRoll.promptProgressionDice({
|
||||
|
@ -39,7 +39,7 @@ export default class LethalFantasyUtils {
|
||||
return val == null;
|
||||
});
|
||||
Handlebars.registerHelper('match', function (val, search) {
|
||||
if ( val && search) {
|
||||
if (val && search) {
|
||||
return val?.match(search);
|
||||
}
|
||||
return false
|
||||
@ -193,4 +193,12 @@ export default class LethalFantasyUtils {
|
||||
|
||||
}
|
||||
|
||||
static getLethargyDice(level) {
|
||||
for (let s of SYSTEM.SPELL_LETHARGY_DICE) {
|
||||
if (Number(level) <= s.maxLevel) {
|
||||
return s.dice
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000187
|
||||
MANIFEST-000195
|
||||
|
@ -1,8 +1,8 @@
|
||||
2025/04/06-09:02:23.059848 7f9c6a7fc6c0 Recovering log #185
|
||||
2025/04/06-09:02:23.073167 7f9c6a7fc6c0 Delete type=3 #183
|
||||
2025/04/06-09:02:23.073254 7f9c6a7fc6c0 Delete type=0 #185
|
||||
2025/04/06-09:52:34.016379 7f9c69bff6c0 Level-0 table #190: started
|
||||
2025/04/06-09:52:34.016444 7f9c69bff6c0 Level-0 table #190: 0 bytes OK
|
||||
2025/04/06-09:52:34.022920 7f9c69bff6c0 Delete type=0 #188
|
||||
2025/04/06-09:52:34.029808 7f9c69bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-09:52:34.029865 7f9c69bff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:37:25.011079 7f9c6bfff6c0 Recovering log #193
|
||||
2025/04/06-22:37:25.094778 7f9c6bfff6c0 Delete type=3 #191
|
||||
2025/04/06-22:37:25.094854 7f9c6bfff6c0 Delete type=0 #193
|
||||
2025/04/06-23:13:03.158258 7f9c69bff6c0 Level-0 table #198: started
|
||||
2025/04/06-23:13:03.158304 7f9c69bff6c0 Level-0 table #198: 0 bytes OK
|
||||
2025/04/06-23:13:03.165495 7f9c69bff6c0 Delete type=0 #196
|
||||
2025/04/06-23:13:03.185973 7f9c69bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-23:13:03.186054 7f9c69bff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2025/04/02-15:35:43.568998 7f7fd1ffb6c0 Recovering log #181
|
||||
2025/04/02-15:35:43.578641 7f7fd1ffb6c0 Delete type=3 #179
|
||||
2025/04/02-15:35:43.578696 7f7fd1ffb6c0 Delete type=0 #181
|
||||
2025/04/02-20:10:15.518255 7f7d33fff6c0 Level-0 table #186: started
|
||||
2025/04/02-20:10:15.518298 7f7d33fff6c0 Level-0 table #186: 0 bytes OK
|
||||
2025/04/02-20:10:15.524411 7f7d33fff6c0 Delete type=0 #184
|
||||
2025/04/02-20:10:15.543756 7f7d33fff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end)
|
||||
2025/04/02-20:10:15.543827 7f7d33fff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:20:18.232271 7f9c6bfff6c0 Recovering log #189
|
||||
2025/04/06-22:20:18.242369 7f9c6bfff6c0 Delete type=3 #187
|
||||
2025/04/06-22:20:18.242439 7f9c6bfff6c0 Delete type=0 #189
|
||||
2025/04/06-22:35:41.370139 7f9c69bff6c0 Level-0 table #194: started
|
||||
2025/04/06-22:35:41.370201 7f9c69bff6c0 Level-0 table #194: 0 bytes OK
|
||||
2025/04/06-22:35:41.376766 7f9c69bff6c0 Delete type=0 #192
|
||||
2025/04/06-22:35:41.396242 7f9c69bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:35:41.396304 7f9c69bff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000186
|
||||
MANIFEST-000194
|
||||
|
@ -1,8 +1,8 @@
|
||||
2025/04/06-09:02:23.077696 7f9c6bfff6c0 Recovering log #184
|
||||
2025/04/06-09:02:23.093082 7f9c6bfff6c0 Delete type=3 #182
|
||||
2025/04/06-09:02:23.093211 7f9c6bfff6c0 Delete type=0 #184
|
||||
2025/04/06-09:52:34.009728 7f9c69bff6c0 Level-0 table #189: started
|
||||
2025/04/06-09:52:34.009772 7f9c69bff6c0 Level-0 table #189: 0 bytes OK
|
||||
2025/04/06-09:52:34.016106 7f9c69bff6c0 Delete type=0 #187
|
||||
2025/04/06-09:52:34.029791 7f9c69bff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-09:52:34.029852 7f9c69bff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:37:25.097825 7f9c6affd6c0 Recovering log #192
|
||||
2025/04/06-22:37:25.151383 7f9c6affd6c0 Delete type=3 #190
|
||||
2025/04/06-22:37:25.151444 7f9c6affd6c0 Delete type=0 #192
|
||||
2025/04/06-23:13:03.179786 7f9c69bff6c0 Level-0 table #197: started
|
||||
2025/04/06-23:13:03.179809 7f9c69bff6c0 Level-0 table #197: 0 bytes OK
|
||||
2025/04/06-23:13:03.185776 7f9c69bff6c0 Delete type=0 #195
|
||||
2025/04/06-23:13:03.186038 7f9c69bff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-23:13:03.186106 7f9c69bff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2025/04/02-15:35:43.582273 7f7fd17fa6c0 Recovering log #180
|
||||
2025/04/02-15:35:43.593360 7f7fd17fa6c0 Delete type=3 #178
|
||||
2025/04/02-15:35:43.593515 7f7fd17fa6c0 Delete type=0 #180
|
||||
2025/04/02-20:10:15.530546 7f7d33fff6c0 Level-0 table #185: started
|
||||
2025/04/02-20:10:15.530570 7f7d33fff6c0 Level-0 table #185: 0 bytes OK
|
||||
2025/04/02-20:10:15.536432 7f7d33fff6c0 Delete type=0 #183
|
||||
2025/04/02-20:10:15.543799 7f7d33fff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||
2025/04/02-20:10:15.543857 7f7d33fff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:20:18.244978 7f9c6a7fc6c0 Recovering log #188
|
||||
2025/04/06-22:20:18.255487 7f9c6a7fc6c0 Delete type=3 #186
|
||||
2025/04/06-22:20:18.255607 7f9c6a7fc6c0 Delete type=0 #188
|
||||
2025/04/06-22:35:41.389186 7f9c69bff6c0 Level-0 table #193: started
|
||||
2025/04/06-22:35:41.389226 7f9c69bff6c0 Level-0 table #193: 0 bytes OK
|
||||
2025/04/06-22:35:41.396058 7f9c69bff6c0 Delete type=0 #191
|
||||
2025/04/06-22:35:41.396288 7f9c69bff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:35:41.396321 7f9c69bff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs-system/lf-gifts/MANIFEST-000194
Normal file
BIN
packs-system/lf-gifts/MANIFEST-000194
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000186
|
||||
MANIFEST-000194
|
||||
|
@ -1,8 +1,8 @@
|
||||
2025/04/06-09:02:23.040045 7f9c6affd6c0 Recovering log #184
|
||||
2025/04/06-09:02:23.053762 7f9c6affd6c0 Delete type=3 #182
|
||||
2025/04/06-09:02:23.053921 7f9c6affd6c0 Delete type=0 #184
|
||||
2025/04/06-09:52:34.002755 7f9c69bff6c0 Level-0 table #189: started
|
||||
2025/04/06-09:52:34.002814 7f9c69bff6c0 Level-0 table #189: 0 bytes OK
|
||||
2025/04/06-09:52:34.009566 7f9c69bff6c0 Delete type=0 #187
|
||||
2025/04/06-09:52:34.029774 7f9c69bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-09:52:34.029839 7f9c69bff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:37:24.928302 7f9c6b7fe6c0 Recovering log #192
|
||||
2025/04/06-22:37:25.008082 7f9c6b7fe6c0 Delete type=3 #190
|
||||
2025/04/06-22:37:25.008180 7f9c6b7fe6c0 Delete type=0 #192
|
||||
2025/04/06-23:13:03.172108 7f9c69bff6c0 Level-0 table #197: started
|
||||
2025/04/06-23:13:03.172132 7f9c69bff6c0 Level-0 table #197: 0 bytes OK
|
||||
2025/04/06-23:13:03.179663 7f9c69bff6c0 Delete type=0 #195
|
||||
2025/04/06-23:13:03.186021 7f9c69bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-23:13:03.186087 7f9c69bff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2025/04/02-15:35:43.553418 7f7fd0ff96c0 Recovering log #180
|
||||
2025/04/02-15:35:43.564808 7f7fd0ff96c0 Delete type=3 #178
|
||||
2025/04/02-15:35:43.564905 7f7fd0ff96c0 Delete type=0 #180
|
||||
2025/04/02-20:10:15.524478 7f7d33fff6c0 Level-0 table #185: started
|
||||
2025/04/02-20:10:15.524502 7f7d33fff6c0 Level-0 table #185: 0 bytes OK
|
||||
2025/04/02-20:10:15.530452 7f7d33fff6c0 Delete type=0 #183
|
||||
2025/04/02-20:10:15.543783 7f7d33fff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||
2025/04/02-20:10:15.543843 7f7d33fff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:20:18.218694 7f9c6affd6c0 Recovering log #188
|
||||
2025/04/06-22:20:18.228729 7f9c6affd6c0 Delete type=3 #186
|
||||
2025/04/06-22:20:18.228901 7f9c6affd6c0 Delete type=0 #188
|
||||
2025/04/06-22:35:41.376873 7f9c69bff6c0 Level-0 table #193: started
|
||||
2025/04/06-22:35:41.376897 7f9c69bff6c0 Level-0 table #193: 0 bytes OK
|
||||
2025/04/06-22:35:41.382813 7f9c69bff6c0 Delete type=0 #191
|
||||
2025/04/06-22:35:41.396253 7f9c69bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:35:41.396312 7f9c69bff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs-system/lf-skills/MANIFEST-000194
Normal file
BIN
packs-system/lf-skills/MANIFEST-000194
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000186
|
||||
MANIFEST-000194
|
||||
|
@ -1,8 +1,8 @@
|
||||
2025/04/06-09:02:23.098348 7f9c6b7fe6c0 Recovering log #184
|
||||
2025/04/06-09:02:23.113146 7f9c6b7fe6c0 Delete type=3 #182
|
||||
2025/04/06-09:02:23.113245 7f9c6b7fe6c0 Delete type=0 #184
|
||||
2025/04/06-09:52:34.023098 7f9c69bff6c0 Level-0 table #189: started
|
||||
2025/04/06-09:52:34.023139 7f9c69bff6c0 Level-0 table #189: 0 bytes OK
|
||||
2025/04/06-09:52:34.029601 7f9c69bff6c0 Delete type=0 #187
|
||||
2025/04/06-09:52:34.029826 7f9c69bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-09:52:34.029904 7f9c69bff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:37:25.153392 7f9c6a7fc6c0 Recovering log #192
|
||||
2025/04/06-22:37:25.208856 7f9c6a7fc6c0 Delete type=3 #190
|
||||
2025/04/06-22:37:25.208937 7f9c6a7fc6c0 Delete type=0 #192
|
||||
2025/04/06-23:13:03.165775 7f9c69bff6c0 Level-0 table #197: started
|
||||
2025/04/06-23:13:03.165803 7f9c69bff6c0 Level-0 table #197: 0 bytes OK
|
||||
2025/04/06-23:13:03.172001 7f9c69bff6c0 Delete type=0 #195
|
||||
2025/04/06-23:13:03.185997 7f9c69bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-23:13:03.186070 7f9c69bff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2025/04/02-15:35:43.596708 7f7fd27fc6c0 Recovering log #180
|
||||
2025/04/02-15:35:43.606542 7f7fd27fc6c0 Delete type=3 #178
|
||||
2025/04/02-15:35:43.606619 7f7fd27fc6c0 Delete type=0 #180
|
||||
2025/04/02-20:10:15.536577 7f7d33fff6c0 Level-0 table #185: started
|
||||
2025/04/02-20:10:15.536639 7f7d33fff6c0 Level-0 table #185: 0 bytes OK
|
||||
2025/04/02-20:10:15.543608 7f7d33fff6c0 Delete type=0 #183
|
||||
2025/04/02-20:10:15.543814 7f7d33fff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||
2025/04/02-20:10:15.543870 7f7d33fff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:20:18.258701 7f9c6b7fe6c0 Recovering log #188
|
||||
2025/04/06-22:20:18.268149 7f9c6b7fe6c0 Delete type=3 #186
|
||||
2025/04/06-22:20:18.268224 7f9c6b7fe6c0 Delete type=0 #188
|
||||
2025/04/06-22:35:41.382962 7f9c69bff6c0 Level-0 table #193: started
|
||||
2025/04/06-22:35:41.383003 7f9c69bff6c0 Level-0 table #193: 0 bytes OK
|
||||
2025/04/06-22:35:41.389033 7f9c69bff6c0 Delete type=0 #191
|
||||
2025/04/06-22:35:41.396265 7f9c69bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||
2025/04/06-22:35:41.396297 7f9c69bff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user