Fix stat import

This commit is contained in:
LeRatierBretonnien 2024-02-26 09:58:36 +01:00
parent 4ead400c2e
commit 8112dae14d
34 changed files with 109 additions and 104 deletions

View File

@ -1,6 +1,5 @@
/************************************************************************************/
import statParserFR from "./modules/import-stat-2.js";
import { ClassCounter} from "https://www.uberwald.me/fvtt_appcount/count-class-ready.js"
/************************************************************************************/
var compmod = "wfrp4e-core";
@ -589,6 +588,11 @@ Hooks.once('init', () => {
/*---------------------------------------------------------------------*/
Hooks.once('ready', () => {
ClassCounter.registerUsageCount("wh4-fr-translation")
import("https://www.uberwald.me/fvtt_appcount/count-class-ready.js").then(moduleCounter=>{
//console.log("ClassCounter loaded", moduleCounter)
moduleCounter.ClassCounter.registerUsageCount("wh4-fr-translation")
}).catch(err=>
console.log("No stats available, giving up.")
)
});

View File

@ -8,7 +8,7 @@
}
],
"url": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr",
"version": "7.0.23",
"version": "7.0.24",
"esmodules": [
"babele-register.js",
"addon-register.js",
@ -116,7 +116,7 @@
}
],
"manifest": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/raw/v10/module.json",
"download": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/archive/foundryvtt-wh4-lang-fr-7.0.23.zip",
"download": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/archive/foundryvtt-wh4-lang-fr-7.0.24.zip",
"id": "wh4-fr-translation",
"compatibility": {
"minimum": "11",

View File

@ -116,7 +116,7 @@ async function __findItem(itemName, itemType, location = null) {
})
if (pack) {
await pack.getIndex().then(index => itemList = index);
let searchResult = itemList.find(t => (t.translated && t.type == itemType && (t.originalName.toLowerCase() == toSearch || s.originalName.toLowerCase().split("(")[0].trim() == toSearch)) || (t.type == itemType && (t.name.toLowerCase() == toSearch || t.name.toLowerCase().split("(")[0].trim() == toSearch)));
let searchResult = itemList.find(t => (t.translated && t.type == itemType && (t.flags?.babele?.originalName.toLowerCase() == toSearch || s.flags?.babele?.originalName.toLowerCase().split("(")[0].trim() == toSearch)) || (t.type == itemType && (t.name.toLowerCase() == toSearch || t.name.toLowerCase().split("(")[0].trim() == toSearch)));
if (searchResult) {
let item = await pack.getDocument(searchResult._id)
return item.toObject()
@ -127,8 +127,8 @@ async function __findItem(itemName, itemType, location = null) {
// If all else fails, search each pack
for (let p of game.wfrp4e.tags.getPacksWithTag(itemType)) {
await p.getIndex().then(index => itemList = index);
console.log("Seatch", itemType, toSearch);
let searchResult = itemList.find(t => (t.translated && t.type == itemType && (t.originalName.toLowerCase() == toSearch || s.originalName.toLowerCase().split("(")[0].trim() == toSearch)) || (t.type == itemType && (t.name.toLowerCase() == toSearch || t.name.toLowerCase().split("(")[0].trim() == toSearch)));
console.log("Seatch", itemType, toSearch, itemList);
let searchResult = itemList.find(t => (t.translated && t.type == itemType && (t.flags?.babele?.originalName.toLowerCase() == toSearch || t.flags?.babele?.originalName.toLowerCase().split("(")[0].trim() == toSearch)) || (t.type == itemType && (t.name.toLowerCase() == toSearch || t.name.toLowerCase().split("(")[0].trim() == toSearch)));
if (searchResult) {
let item = await p.getDocument(searchResult._id)
return item.toObject()
@ -153,10 +153,10 @@ async function __findSkill(skillName, value = undefined) {
for (let pack of packs) {
let skillList = await pack.getIndex();
// Search for specific skill (won't find unlisted specializations)
let searchResult = skillList.find(s => (s.type == "skill" && s.translated && s.originalName.toLowerCase() == toSearch) || (s.type == "skill" && s.name.toLowerCase() == toSearch));
let searchResult = skillList.find(s => (s.type == "skill" && s.translated && s.flags?.babele?.originalName.toLowerCase() == toSearch) || (s.type == "skill" && s.name.toLowerCase() == toSearch));
if (!searchResult) {
let toSearchClean = toSearch.split("(")[0].trim();
searchResult = skillList.find(s => (s.type == "skill" && s.translated && s.originalName.toLowerCase().split("(")[0].trim() == toSearchClean) ||
searchResult = skillList.find(s => (s.type == "skill" && s.translated && s.flags?.babele?.originalName.toLowerCase().split("(")[0].trim() == toSearchClean) ||
(s.type == "skill" && s.name.toLowerCase().split("(")[0].trim() == toSearchClean));
}
if (searchResult) {
@ -198,10 +198,10 @@ async function __findTalent(talentName) {
for (let pack of packs) {
let talentList = await pack.getIndex();
// Search for specific talent (won't find unlisted specializations)
let searchResult = talentList.find(s => (s.type == "talent" && s.translated && s.originalName.toLowerCase() == toSearch) || (s.type == "talent" && s.name.toLowerCase() == toSearch));
let searchResult = talentList.find(s => (s.type == "talent" && s.translated && s.flags?.babele?.originalName.toLowerCase() == toSearch) || (s.type == "talent" && s.name.toLowerCase() == toSearch));
if (!searchResult) {
let toSearchClean = toSearch.split("(")[0].trim();
searchResult = talentList.find(s => (s.type == "talent" && s.translated && s.originalName.toLowerCase().split("(")[0].trim() == toSearchClean) ||
searchResult = talentList.find(s => (s.type == "talent" && s.translated && s.flags?.babele?.originalName.toLowerCase().split("(")[0].trim() == toSearchClean) ||
(s.type == "talent" && s.name.toLowerCase().split("(")[0].trim() == toSearchClean));
}
if (searchResult) {
@ -272,9 +272,10 @@ export default async function statParserFR(statString, type = "npc") {
// Extract the name
let res1 = XRegExp.exec(statString, reg1)
console.log("REG", res1)
let pnjStr = statString.substring(0, res1.index)
console.log("REG", res1, pnjStr, res)
let nameRes = XRegExp.exec(pnjStr, regName)
console.log("REG", nameRes, regName)
//console.log(nameRes)
if (nameRes.tiers && nameRes.tiers.length > 0 && hasProperty(model, "details.status.value")) {
let regTiers = XRegExp("(?<name>[A-Za-z]*)\\s+(?<level>[0-9]*)");

View File

@ -1 +1 @@
MANIFEST-000383
MANIFEST-000451

View File

@ -1,7 +1,7 @@
2024/02/03-16:06:26.192273 7ff62f4006c0 Recovering log #381
2024/02/03-16:06:26.202127 7ff62f4006c0 Delete type=3 #379
2024/02/03-16:06:26.202208 7ff62f4006c0 Delete type=0 #381
2024/02/03-16:07:06.807791 7ff62e6006c0 Level-0 table #386: started
2024/02/03-16:07:06.807822 7ff62e6006c0 Level-0 table #386: 0 bytes OK
2024/02/03-16:07:06.814017 7ff62e6006c0 Delete type=0 #384
2024/02/03-16:07:06.828385 7ff62e6006c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)
2024/02/26-09:25:08.589507 7f13374006c0 Recovering log #449
2024/02/26-09:25:08.619503 7f13374006c0 Delete type=3 #447
2024/02/26-09:25:08.619642 7f13374006c0 Delete type=0 #449
2024/02/26-09:31:31.421231 7f132fe006c0 Level-0 table #454: started
2024/02/26-09:31:31.421275 7f132fe006c0 Level-0 table #454: 0 bytes OK
2024/02/26-09:31:31.565568 7f132fe006c0 Delete type=0 #452
2024/02/26-09:31:31.566489 7f132fe006c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/01/28-22:44:44.739420 7ff6ccbfa6c0 Recovering log #377
2024/01/28-22:44:44.749472 7ff6ccbfa6c0 Delete type=3 #375
2024/01/28-22:44:44.749596 7ff6ccbfa6c0 Delete type=0 #377
2024/01/28-22:44:46.649248 7ff4363ff6c0 Level-0 table #382: started
2024/01/28-22:44:46.649449 7ff4363ff6c0 Level-0 table #382: 0 bytes OK
2024/01/28-22:44:46.655711 7ff4363ff6c0 Delete type=0 #380
2024/01/28-22:44:46.655806 7ff4363ff6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)
2024/02/25-23:39:43.430119 7f1337e006c0 Recovering log #445
2024/02/25-23:39:43.441308 7f1337e006c0 Delete type=3 #443
2024/02/25-23:39:43.441411 7f1337e006c0 Delete type=0 #445
2024/02/26-00:15:14.958948 7f132fe006c0 Level-0 table #450: started
2024/02/26-00:15:14.958985 7f132fe006c0 Level-0 table #450: 0 bytes OK
2024/02/26-00:15:14.994389 7f132fe006c0 Delete type=0 #448
2024/02/26-00:15:15.032049 7f132fe006c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000384
MANIFEST-000452

View File

@ -1,7 +1,7 @@
2024/02/03-16:06:26.206667 7ff6356006c0 Recovering log #382
2024/02/03-16:06:26.216682 7ff6356006c0 Delete type=3 #380
2024/02/03-16:06:26.216980 7ff6356006c0 Delete type=0 #382
2024/02/03-16:07:06.800766 7ff62e6006c0 Level-0 table #387: started
2024/02/03-16:07:06.800837 7ff62e6006c0 Level-0 table #387: 0 bytes OK
2024/02/03-16:07:06.807671 7ff62e6006c0 Delete type=0 #385
2024/02/03-16:07:06.828364 7ff62e6006c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2024/02/26-09:25:08.622337 7f1337e006c0 Recovering log #450
2024/02/26-09:25:08.650244 7f1337e006c0 Delete type=3 #448
2024/02/26-09:25:08.650369 7f1337e006c0 Delete type=0 #450
2024/02/26-09:31:31.219639 7f132fe006c0 Level-0 table #455: started
2024/02/26-09:31:31.219683 7f132fe006c0 Level-0 table #455: 0 bytes OK
2024/02/26-09:31:31.421058 7f132fe006c0 Delete type=0 #453
2024/02/26-09:31:31.566461 7f132fe006c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/01/28-22:44:44.751723 7ff6b7fff6c0 Recovering log #378
2024/01/28-22:44:44.761238 7ff6b7fff6c0 Delete type=3 #376
2024/01/28-22:44:44.761415 7ff6b7fff6c0 Delete type=0 #378
2024/01/28-22:44:46.621828 7ff4363ff6c0 Level-0 table #383: started
2024/01/28-22:44:46.621856 7ff4363ff6c0 Level-0 table #383: 0 bytes OK
2024/01/28-22:44:46.628296 7ff4363ff6c0 Delete type=0 #381
2024/01/28-22:44:46.642188 7ff4363ff6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2024/02/25-23:39:43.443298 7f1336a006c0 Recovering log #446
2024/02/25-23:39:43.452927 7f1336a006c0 Delete type=3 #444
2024/02/25-23:39:43.452983 7f1336a006c0 Delete type=0 #446
2024/02/26-00:15:14.994710 7f132fe006c0 Level-0 table #451: started
2024/02/26-00:15:14.994738 7f132fe006c0 Level-0 table #451: 0 bytes OK
2024/02/26-00:15:15.031682 7f132fe006c0 Delete type=0 #449
2024/02/26-00:15:15.032058 7f132fe006c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000383
MANIFEST-000451

View File

@ -1,7 +1,7 @@
2024/02/03-16:06:26.237972 7ff62fe006c0 Recovering log #381
2024/02/03-16:06:26.248073 7ff62fe006c0 Delete type=3 #379
2024/02/03-16:06:26.248319 7ff62fe006c0 Delete type=0 #381
2024/02/03-16:07:06.821655 7ff62e6006c0 Level-0 table #386: started
2024/02/03-16:07:06.821686 7ff62e6006c0 Level-0 table #386: 0 bytes OK
2024/02/03-16:07:06.828202 7ff62e6006c0 Delete type=0 #384
2024/02/03-16:07:06.828412 7ff62e6006c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)
2024/02/26-09:25:08.685625 7f1337e006c0 Recovering log #449
2024/02/26-09:25:08.716786 7f1337e006c0 Delete type=3 #447
2024/02/26-09:25:08.717195 7f1337e006c0 Delete type=0 #449
2024/02/26-09:31:31.566675 7f132fe006c0 Level-0 table #454: started
2024/02/26-09:31:31.566739 7f132fe006c0 Level-0 table #454: 0 bytes OK
2024/02/26-09:31:31.733942 7f132fe006c0 Delete type=0 #452
2024/02/26-09:31:31.935375 7f132fe006c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/01/28-22:44:44.775955 7ff6b6ffd6c0 Recovering log #377
2024/01/28-22:44:44.786000 7ff6b6ffd6c0 Delete type=3 #375
2024/01/28-22:44:44.786162 7ff6b6ffd6c0 Delete type=0 #377
2024/01/28-22:44:46.642394 7ff4363ff6c0 Level-0 table #382: started
2024/01/28-22:44:46.642417 7ff4363ff6c0 Level-0 table #382: 0 bytes OK
2024/01/28-22:44:46.649097 7ff4363ff6c0 Delete type=0 #380
2024/01/28-22:44:46.655797 7ff4363ff6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)
2024/02/25-23:39:43.469451 7f1336a006c0 Recovering log #445
2024/02/25-23:39:43.480769 7f1336a006c0 Delete type=3 #443
2024/02/25-23:39:43.480913 7f1336a006c0 Delete type=0 #445
2024/02/26-00:15:15.032190 7f132fe006c0 Level-0 table #450: started
2024/02/26-00:15:15.032219 7f132fe006c0 Level-0 table #450: 0 bytes OK
2024/02/26-00:15:15.093715 7f132fe006c0 Delete type=0 #448
2024/02/26-00:15:15.173217 7f132fe006c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000383
MANIFEST-000451

View File

@ -1,7 +1,7 @@
2024/02/03-16:06:26.176917 7ff62fe006c0 Recovering log #381
2024/02/03-16:06:26.188154 7ff62fe006c0 Delete type=3 #379
2024/02/03-16:06:26.188247 7ff62fe006c0 Delete type=0 #381
2024/02/03-16:07:06.786927 7ff62e6006c0 Level-0 table #386: started
2024/02/03-16:07:06.786955 7ff62e6006c0 Level-0 table #386: 0 bytes OK
2024/02/03-16:07:06.793691 7ff62e6006c0 Delete type=0 #384
2024/02/03-16:07:06.800562 7ff62e6006c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)
2024/02/26-09:25:08.560987 7f1337e006c0 Recovering log #449
2024/02/26-09:25:08.586267 7f1337e006c0 Delete type=3 #447
2024/02/26-09:25:08.586576 7f1337e006c0 Delete type=0 #449
2024/02/26-09:31:31.131912 7f132fe006c0 Level-0 table #454: started
2024/02/26-09:31:31.131952 7f132fe006c0 Level-0 table #454: 0 bytes OK
2024/02/26-09:31:31.219453 7f132fe006c0 Delete type=0 #452
2024/02/26-09:31:31.566434 7f132fe006c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/01/28-22:44:44.726678 7ff6b6ffd6c0 Recovering log #377
2024/01/28-22:44:44.737307 7ff6b6ffd6c0 Delete type=3 #375
2024/01/28-22:44:44.737352 7ff6b6ffd6c0 Delete type=0 #377
2024/01/28-22:44:46.635876 7ff4363ff6c0 Level-0 table #382: started
2024/01/28-22:44:46.635918 7ff4363ff6c0 Level-0 table #382: 0 bytes OK
2024/01/28-22:44:46.642067 7ff4363ff6c0 Delete type=0 #380
2024/01/28-22:44:46.642208 7ff4363ff6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)
2024/02/25-23:39:43.417564 7f1336a006c0 Recovering log #445
2024/02/25-23:39:43.427993 7f1336a006c0 Delete type=3 #443
2024/02/25-23:39:43.428043 7f1336a006c0 Delete type=0 #445
2024/02/26-00:15:14.913793 7f132fe006c0 Level-0 table #450: started
2024/02/26-00:15:14.913841 7f132fe006c0 Level-0 table #450: 0 bytes OK
2024/02/26-00:15:14.958799 7f132fe006c0 Delete type=0 #448
2024/02/26-00:15:15.032038 7f132fe006c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000383
MANIFEST-000451

View File

@ -1,7 +1,7 @@
2024/02/03-16:06:26.159276 7ff634c006c0 Recovering log #381
2024/02/03-16:06:26.170468 7ff634c006c0 Delete type=3 #379
2024/02/03-16:06:26.170617 7ff634c006c0 Delete type=0 #381
2024/02/03-16:07:06.779371 7ff62e6006c0 Level-0 table #386: started
2024/02/03-16:07:06.779422 7ff62e6006c0 Level-0 table #386: 0 bytes OK
2024/02/03-16:07:06.786762 7ff62e6006c0 Delete type=0 #384
2024/02/03-16:07:06.800541 7ff62e6006c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2024/02/26-09:25:08.525839 7f13374006c0 Recovering log #449
2024/02/26-09:25:08.557135 7f13374006c0 Delete type=3 #447
2024/02/26-09:25:08.557260 7f13374006c0 Delete type=0 #449
2024/02/26-09:31:31.042099 7f132fe006c0 Level-0 table #454: started
2024/02/26-09:31:31.042171 7f132fe006c0 Level-0 table #454: 0 bytes OK
2024/02/26-09:31:31.131729 7f132fe006c0 Delete type=0 #452
2024/02/26-09:31:31.566396 7f132fe006c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/01/28-22:44:44.713843 7ff6b77fe6c0 Recovering log #377
2024/01/28-22:44:44.723962 7ff6b77fe6c0 Delete type=3 #375
2024/01/28-22:44:44.724064 7ff6b77fe6c0 Delete type=0 #377
2024/01/28-22:44:46.615135 7ff4363ff6c0 Level-0 table #382: started
2024/01/28-22:44:46.615153 7ff4363ff6c0 Level-0 table #382: 0 bytes OK
2024/01/28-22:44:46.621749 7ff4363ff6c0 Delete type=0 #380
2024/01/28-22:44:46.642174 7ff4363ff6c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2024/02/25-23:39:43.405127 7f1337e006c0 Recovering log #445
2024/02/25-23:39:43.415351 7f1337e006c0 Delete type=3 #443
2024/02/25-23:39:43.415394 7f1337e006c0 Delete type=0 #445
2024/02/26-00:15:14.876806 7f132fe006c0 Level-0 table #450: started
2024/02/26-00:15:14.876840 7f132fe006c0 Level-0 table #450: 0 bytes OK
2024/02/26-00:15:14.913526 7f132fe006c0 Delete type=0 #448
2024/02/26-00:15:15.032020 7f132fe006c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000026
MANIFEST-000094

View File

@ -1,8 +1,8 @@
2024/02/03-16:06:26.222775 7ff634c006c0 Recovering log #24
2024/02/03-16:06:26.234065 7ff634c006c0 Delete type=3 #22
2024/02/03-16:06:26.234152 7ff634c006c0 Delete type=0 #24
2024/02/03-16:07:06.814168 7ff62e6006c0 Level-0 table #29: started
2024/02/03-16:07:06.814205 7ff62e6006c0 Level-0 table #29: 0 bytes OK
2024/02/03-16:07:06.821510 7ff62e6006c0 Delete type=0 #27
2024/02/03-16:07:06.828399 7ff62e6006c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2024/02/03-16:07:06.828427 7ff62e6006c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2024/02/26-09:25:08.653968 7f13374006c0 Recovering log #92
2024/02/26-09:25:08.682862 7f13374006c0 Delete type=3 #90
2024/02/26-09:25:08.683053 7f13374006c0 Delete type=0 #92
2024/02/26-09:31:31.734136 7f132fe006c0 Level-0 table #97: started
2024/02/26-09:31:31.734187 7f132fe006c0 Level-0 table #97: 0 bytes OK
2024/02/26-09:31:31.935001 7f132fe006c0 Delete type=0 #95
2024/02/26-09:31:31.935450 7f132fe006c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2024/02/26-09:31:31.935494 7f132fe006c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/01/28-22:44:44.763295 7ff6b77fe6c0 Recovering log #20
2024/01/28-22:44:44.773861 7ff6b77fe6c0 Delete type=3 #18
2024/01/28-22:44:44.773944 7ff6b77fe6c0 Delete type=0 #20
2024/01/28-22:44:46.628526 7ff4363ff6c0 Level-0 table #25: started
2024/01/28-22:44:46.628587 7ff4363ff6c0 Level-0 table #25: 0 bytes OK
2024/01/28-22:44:46.635682 7ff4363ff6c0 Delete type=0 #23
2024/01/28-22:44:46.642199 7ff4363ff6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2024/01/28-22:44:46.642253 7ff4363ff6c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2024/02/25-23:39:43.455535 7f1337e006c0 Recovering log #88
2024/02/25-23:39:43.467033 7f1337e006c0 Delete type=3 #86
2024/02/25-23:39:43.467172 7f1337e006c0 Delete type=0 #88
2024/02/26-00:15:15.093842 7f132fe006c0 Level-0 table #93: started
2024/02/26-00:15:15.093872 7f132fe006c0 Level-0 table #93: 0 bytes OK
2024/02/26-00:15:15.172983 7f132fe006c0 Delete type=0 #91
2024/02/26-00:15:15.173247 7f132fe006c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2024/02/26-00:15:15.173282 7f132fe006c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)

Binary file not shown.