Fix skill testing
This commit is contained in:
		| @@ -158,29 +158,32 @@ Hooks.once('init', () => { | |||||||
|           for (i = 0; i < len; i++) { |           for (i = 0; i < len; i++) { | ||||||
|             skills_list[i] = skills_list[i].trim(); |             skills_list[i] = skills_list[i].trim(); | ||||||
|             for (let compData of validCompendiums) { |             for (let compData of validCompendiums) { | ||||||
|               let transl = game.babele.translate(compData.metadata.id, { name: skills_list[i], type: "skill" }, true).name; |               let translItem = game.babele.translate(compData.metadata.id, { name: skills_list[i], type: "skill" }, true) | ||||||
|  |               let transl = translItem?.name || undefined | ||||||
|               if (!transl) transl = skills_list[i] |               if (!transl) transl = skills_list[i] | ||||||
|               //console.log("List ...", skills_list[i]); |               console.log("List ...", skills_list[i], compData.metadata.id, translItem); | ||||||
|               if (transl == skills_list[i]) { |               if (transl == skills_list[i]) { | ||||||
|                 let res = re.exec(skills_list[i]); |                 let res = re.exec(skills_list[i]); | ||||||
|                 if (res) { |                 if (res) { | ||||||
|                   //console.log("Matched/split:", res[1], res[2]); |                   //console.log("Matched/split:", res[1], res[2]); | ||||||
|                   let subword = game.i18n.localize(res[2].trim()); |                   let subword = game.i18n.localize(res[2].trim()); | ||||||
|                   let s1 = res[1].trim() + " ()"; |                   let s1 = res[1].trim() + " ()"; | ||||||
|                   let translw = game.babele.translate(compData.metadata.id, { name: s1, type: "skill" }, true).name; |                   translItem = game.babele.translate(compData.metadata.id, { name: s1, type: "skill" }, true) | ||||||
|  |                   let translw = translItem?.name || undefined | ||||||
|                   if (translw != s1) { |                   if (translw != s1) { | ||||||
|                     let res2 = re.exec(translw); |                     let res2 = re.exec(translw); | ||||||
|                     transl = res2[1] + "(" + subword + ")"; |                     transl = res2[1] + "(" + subword + ")"; | ||||||
|                   } else { |                   } else { | ||||||
|                     s1 = res[1].trim() + " ( )"; |                     s1 = res[1].trim() + " ( )"; | ||||||
|                     translw = game.babele.translate(compData.metadata.id, { name: s1, type: "skill" }, true).name; |                     translItem = game.babele.translate(compData.metadata.id, { name: s1, type: "skill" }, true) | ||||||
|  |                     translw = translItem?.name || undefined | ||||||
|                     let res2 = re.exec(translw); |                     let res2 = re.exec(translw); | ||||||
|                     transl = res2[1] + "(" + subword + ")"; |                     transl = res2[1] + "(" + subword + ")"; | ||||||
|                   } |                   } | ||||||
|                 } |                 } | ||||||
|               } |               } | ||||||
|               skills_list[i] = transl; |               skills_list[i] = transl; | ||||||
|               if (transl?.system) |               if (translItem?.system) | ||||||
|                 break; |                 break; | ||||||
|             } |             } | ||||||
|           } |           } | ||||||
| @@ -241,26 +244,26 @@ Hooks.once('init', () => { | |||||||
|           let len = talents_list.length; |           let len = talents_list.length; | ||||||
|           let re = /(.*)\((.*)\)/i; |           let re = /(.*)\((.*)\)/i; | ||||||
|           for (i = 0; i < len; i++) { |           for (i = 0; i < len; i++) { | ||||||
|             let translated = false; |  | ||||||
|             for (let compData of validCompendiums) { |             for (let compData of validCompendiums) { | ||||||
|               //console.log("TALENT - Parsing : ", talents_list) |               //console.log("TALENT - Parsing : ", talents_list) | ||||||
|               let transl = game.babele.translate(compData.metadata.id, { name: talents_list[i], type: "talent" }, true).name; |               let translItem = game.babele.translate(compData.metadata.id, { name: talents_list[i], type: "talent" }, true); | ||||||
|  |               let transl = translItem?.name || undefined | ||||||
|               if (!transl) transl = talents_list[i] |               if (!transl) transl = talents_list[i] | ||||||
|               if (transl == talents_list[i]) { |               if (transl == talents_list[i]) { | ||||||
|                 let res = re.exec(talents_list[i]); |                 let res = re.exec(talents_list[i]); | ||||||
|                 if (res) { |                 if (res) { | ||||||
|                   let subword = game.i18n.localize(res[2].trim()); |                   let subword = game.i18n.localize(res[2].trim()); | ||||||
|                   let s1 = res[1].trim(); // No () in talents table |                   let s1 = res[1].trim(); // No () in talents table | ||||||
|                   let translw = game.babele.translate(compData.metadata.id, { name: s1, type: "talent" }, true).name; |                   translItem = game.babele.translate(compData.metadata.id, { name: s1, type: "talent" }, true) | ||||||
|  |                   let translw = translItem?.name || undefined | ||||||
|                   //console.log("Ssearch talent name:", compData.metadata.id, s1, translw); |                   //console.log("Ssearch talent name:", compData.metadata.id, s1, translw); | ||||||
|                   if (translw && translw != s1) { |                   if (translw && translw != s1) { | ||||||
|                     transl = translw + " (" + subword + ")"; |                     transl = translw + " (" + subword + ")"; | ||||||
|                     translated = true |  | ||||||
|                   }  |                   }  | ||||||
|                 } |                 } | ||||||
|               } |               } | ||||||
|               talents_list[i] = transl; |               talents_list[i] = transl; | ||||||
|               if (translated) |               if (translItem?.system) | ||||||
|                 break; |                 break; | ||||||
|             } |             } | ||||||
|           } |           } | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| MANIFEST-000280 | MANIFEST-000284 | ||||||
|   | |||||||
| @@ -1,8 +1,3 @@ | |||||||
| 2023/10/01-21:10:38.974988 7f58077fe6c0 Recovering log #278 | 2023/10/03-07:03:02.743995 7f9ff2ffd6c0 Recovering log #282 | ||||||
| 2023/10/01-21:10:38.985805 7f58077fe6c0 Delete type=3 #276 | 2023/10/03-07:03:02.753386 7f9ff2ffd6c0 Delete type=3 #280 | ||||||
| 2023/10/01-21:10:38.985946 7f58077fe6c0 Delete type=0 #278 | 2023/10/03-07:03:02.753446 7f9ff2ffd6c0 Delete type=0 #282 | ||||||
| 2023/10/01-21:13:13.383766 7f58067fc6c0 Level-0 table #283: started |  | ||||||
| 2023/10/01-21:13:13.383822 7f58067fc6c0 Level-0 table #283: 0 bytes OK |  | ||||||
| 2023/10/01-21:13:13.390830 7f58067fc6c0 Delete type=0 #281 |  | ||||||
| 2023/10/01-21:13:13.405858 7f58067fc6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) |  | ||||||
| 2023/10/01-21:13:13.405935 7f58067fc6c0 Manual compaction at level-1 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) |  | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| 2023/10/01-21:07:46.030847 7f5a9cdff6c0 Recovering log #274 | 2023/10/01-21:10:38.974988 7f58077fe6c0 Recovering log #278 | ||||||
| 2023/10/01-21:07:46.042191 7f5a9cdff6c0 Delete type=3 #272 | 2023/10/01-21:10:38.985805 7f58077fe6c0 Delete type=3 #276 | ||||||
| 2023/10/01-21:07:46.042382 7f5a9cdff6c0 Delete type=0 #274 | 2023/10/01-21:10:38.985946 7f58077fe6c0 Delete type=0 #278 | ||||||
| 2023/10/01-21:08:33.272248 7f58067fc6c0 Level-0 table #279: started | 2023/10/01-21:13:13.383766 7f58067fc6c0 Level-0 table #283: started | ||||||
| 2023/10/01-21:08:33.272308 7f58067fc6c0 Level-0 table #279: 0 bytes OK | 2023/10/01-21:13:13.383822 7f58067fc6c0 Level-0 table #283: 0 bytes OK | ||||||
| 2023/10/01-21:08:33.312079 7f58067fc6c0 Delete type=0 #277 | 2023/10/01-21:13:13.390830 7f58067fc6c0 Delete type=0 #281 | ||||||
| 2023/10/01-21:08:33.348444 7f58067fc6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.405858 7f58067fc6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) | ||||||
| 2023/10/01-21:08:33.348574 7f58067fc6c0 Manual compaction at level-1 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.405935 7f58067fc6c0 Manual compaction at level-1 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) | ||||||
|   | |||||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/aides-de-jeu-fr/MANIFEST-000284
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/aides-de-jeu-fr/MANIFEST-000284
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -1 +1 @@ | |||||||
| MANIFEST-000281 | MANIFEST-000285 | ||||||
|   | |||||||
| @@ -1,8 +1,3 @@ | |||||||
| 2023/10/01-21:10:38.988544 7f5a9cdff6c0 Recovering log #279 | 2023/10/03-07:03:02.756816 7f9ff3fff6c0 Recovering log #283 | ||||||
| 2023/10/01-21:10:38.998072 7f5a9cdff6c0 Delete type=3 #277 | 2023/10/03-07:03:02.768055 7f9ff3fff6c0 Delete type=3 #281 | ||||||
| 2023/10/01-21:10:38.998191 7f5a9cdff6c0 Delete type=0 #279 | 2023/10/03-07:03:02.768112 7f9ff3fff6c0 Delete type=0 #283 | ||||||
| 2023/10/01-21:13:13.376689 7f58067fc6c0 Level-0 table #284: started |  | ||||||
| 2023/10/01-21:13:13.376746 7f58067fc6c0 Level-0 table #284: 0 bytes OK |  | ||||||
| 2023/10/01-21:13:13.383338 7f58067fc6c0 Delete type=0 #282 |  | ||||||
| 2023/10/01-21:13:13.383578 7f58067fc6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) |  | ||||||
| 2023/10/01-21:13:13.383644 7f58067fc6c0 Manual compaction at level-1 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) |  | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| 2023/10/01-21:07:46.045590 7f58077fe6c0 Recovering log #275 | 2023/10/01-21:10:38.988544 7f5a9cdff6c0 Recovering log #279 | ||||||
| 2023/10/01-21:07:46.055651 7f58077fe6c0 Delete type=3 #273 | 2023/10/01-21:10:38.998072 7f5a9cdff6c0 Delete type=3 #277 | ||||||
| 2023/10/01-21:07:46.055767 7f58077fe6c0 Delete type=0 #275 | 2023/10/01-21:10:38.998191 7f5a9cdff6c0 Delete type=0 #279 | ||||||
| 2023/10/01-21:08:33.312327 7f58067fc6c0 Level-0 table #280: started | 2023/10/01-21:13:13.376689 7f58067fc6c0 Level-0 table #284: started | ||||||
| 2023/10/01-21:08:33.312390 7f58067fc6c0 Level-0 table #280: 0 bytes OK | 2023/10/01-21:13:13.376746 7f58067fc6c0 Level-0 table #284: 0 bytes OK | ||||||
| 2023/10/01-21:08:33.348111 7f58067fc6c0 Delete type=0 #278 | 2023/10/01-21:13:13.383338 7f58067fc6c0 Delete type=0 #282 | ||||||
| 2023/10/01-21:08:33.348472 7f58067fc6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.383578 7f58067fc6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) | ||||||
| 2023/10/01-21:08:33.348602 7f58067fc6c0 Manual compaction at level-1 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.383644 7f58067fc6c0 Manual compaction at level-1 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) | ||||||
|   | |||||||
										
											Binary file not shown.
										
									
								
							| @@ -1 +1 @@ | |||||||
| MANIFEST-000280 | MANIFEST-000284 | ||||||
|   | |||||||
| @@ -1,8 +1,3 @@ | |||||||
| 2023/10/01-21:10:39.014833 7f5806ffd6c0 Recovering log #278 | 2023/10/03-07:03:02.785355 7f9ff37fe6c0 Recovering log #282 | ||||||
| 2023/10/01-21:10:39.025762 7f5806ffd6c0 Delete type=3 #276 | 2023/10/03-07:03:02.795364 7f9ff37fe6c0 Delete type=3 #280 | ||||||
| 2023/10/01-21:10:39.025839 7f5806ffd6c0 Delete type=0 #278 | 2023/10/03-07:03:02.795447 7f9ff37fe6c0 Delete type=0 #282 | ||||||
| 2023/10/01-21:13:13.397373 7f58067fc6c0 Level-0 table #283: started |  | ||||||
| 2023/10/01-21:13:13.397569 7f58067fc6c0 Level-0 table #283: 0 bytes OK |  | ||||||
| 2023/10/01-21:13:13.405604 7f58067fc6c0 Delete type=0 #281 |  | ||||||
| 2023/10/01-21:13:13.405915 7f58067fc6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) |  | ||||||
| 2023/10/01-21:13:13.405972 7f58067fc6c0 Manual compaction at level-1 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) |  | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| 2023/10/01-21:07:46.074362 7f5806ffd6c0 Recovering log #274 | 2023/10/01-21:10:39.014833 7f5806ffd6c0 Recovering log #278 | ||||||
| 2023/10/01-21:07:46.084818 7f5806ffd6c0 Delete type=3 #272 | 2023/10/01-21:10:39.025762 7f5806ffd6c0 Delete type=3 #276 | ||||||
| 2023/10/01-21:07:46.084936 7f5806ffd6c0 Delete type=0 #274 | 2023/10/01-21:10:39.025839 7f5806ffd6c0 Delete type=0 #278 | ||||||
| 2023/10/01-21:08:33.348740 7f58067fc6c0 Level-0 table #279: started | 2023/10/01-21:13:13.397373 7f58067fc6c0 Level-0 table #283: started | ||||||
| 2023/10/01-21:08:33.348805 7f58067fc6c0 Level-0 table #279: 0 bytes OK | 2023/10/01-21:13:13.397569 7f58067fc6c0 Level-0 table #283: 0 bytes OK | ||||||
| 2023/10/01-21:08:33.384650 7f58067fc6c0 Delete type=0 #277 | 2023/10/01-21:13:13.405604 7f58067fc6c0 Delete type=0 #281 | ||||||
| 2023/10/01-21:08:33.384857 7f58067fc6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.405915 7f58067fc6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) | ||||||
| 2023/10/01-21:08:33.384892 7f58067fc6c0 Manual compaction at level-1 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.405972 7f58067fc6c0 Manual compaction at level-1 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) | ||||||
|   | |||||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/apothicarium/MANIFEST-000284
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/apothicarium/MANIFEST-000284
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -1 +1 @@ | |||||||
| MANIFEST-000280 | MANIFEST-000284 | ||||||
|   | |||||||
| @@ -1,8 +1,3 @@ | |||||||
| 2023/10/01-21:10:38.961794 7f5806ffd6c0 Recovering log #278 | 2023/10/03-07:03:02.730668 7f9ff37fe6c0 Recovering log #282 | ||||||
| 2023/10/01-21:10:38.972606 7f5806ffd6c0 Delete type=3 #276 | 2023/10/03-07:03:02.741008 7f9ff37fe6c0 Delete type=3 #280 | ||||||
| 2023/10/01-21:10:38.972680 7f5806ffd6c0 Delete type=0 #278 | 2023/10/03-07:03:02.741141 7f9ff37fe6c0 Delete type=0 #282 | ||||||
| 2023/10/01-21:13:13.368981 7f58067fc6c0 Level-0 table #283: started |  | ||||||
| 2023/10/01-21:13:13.369042 7f58067fc6c0 Level-0 table #283: 0 bytes OK |  | ||||||
| 2023/10/01-21:13:13.376475 7f58067fc6c0 Delete type=0 #281 |  | ||||||
| 2023/10/01-21:13:13.383557 7f58067fc6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) |  | ||||||
| 2023/10/01-21:13:13.383626 7f58067fc6c0 Manual compaction at level-1 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) |  | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| 2023/10/01-21:07:46.015537 7f5806ffd6c0 Recovering log #274 | 2023/10/01-21:10:38.961794 7f5806ffd6c0 Recovering log #278 | ||||||
| 2023/10/01-21:07:46.026924 7f5806ffd6c0 Delete type=3 #272 | 2023/10/01-21:10:38.972606 7f5806ffd6c0 Delete type=3 #276 | ||||||
| 2023/10/01-21:07:46.027062 7f5806ffd6c0 Delete type=0 #274 | 2023/10/01-21:10:38.972680 7f5806ffd6c0 Delete type=0 #278 | ||||||
| 2023/10/01-21:08:33.176716 7f58067fc6c0 Level-0 table #279: started | 2023/10/01-21:13:13.368981 7f58067fc6c0 Level-0 table #283: started | ||||||
| 2023/10/01-21:08:33.176770 7f58067fc6c0 Level-0 table #279: 0 bytes OK | 2023/10/01-21:13:13.369042 7f58067fc6c0 Level-0 table #283: 0 bytes OK | ||||||
| 2023/10/01-21:08:33.236417 7f58067fc6c0 Delete type=0 #277 | 2023/10/01-21:13:13.376475 7f58067fc6c0 Delete type=0 #281 | ||||||
| 2023/10/01-21:08:33.348379 7f58067fc6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.383557 7f58067fc6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) | ||||||
| 2023/10/01-21:08:33.348519 7f58067fc6c0 Manual compaction at level-1 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.383626 7f58067fc6c0 Manual compaction at level-1 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) | ||||||
|   | |||||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/dons-de-rhya/MANIFEST-000284
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/dons-de-rhya/MANIFEST-000284
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -1 +1 @@ | |||||||
| MANIFEST-000280 | MANIFEST-000284 | ||||||
|   | |||||||
| @@ -1,8 +1,3 @@ | |||||||
| 2023/10/01-21:10:38.946582 7f5807fff6c0 Recovering log #278 | 2023/10/03-07:03:02.717347 7f9ff27fc6c0 Recovering log #282 | ||||||
| 2023/10/01-21:10:38.956394 7f5807fff6c0 Delete type=3 #276 | 2023/10/03-07:03:02.728108 7f9ff27fc6c0 Delete type=3 #280 | ||||||
| 2023/10/01-21:10:38.956460 7f5807fff6c0 Delete type=0 #278 | 2023/10/03-07:03:02.728158 7f9ff27fc6c0 Delete type=0 #282 | ||||||
| 2023/10/01-21:13:13.362008 7f58067fc6c0 Level-0 table #283: started |  | ||||||
| 2023/10/01-21:13:13.362069 7f58067fc6c0 Level-0 table #283: 0 bytes OK |  | ||||||
| 2023/10/01-21:13:13.368748 7f58067fc6c0 Delete type=0 #281 |  | ||||||
| 2023/10/01-21:13:13.383538 7f58067fc6c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) |  | ||||||
| 2023/10/01-21:13:13.383607 7f58067fc6c0 Manual compaction at level-1 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) |  | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| 2023/10/01-21:07:46.000243 7f5807fff6c0 Recovering log #274 | 2023/10/01-21:10:38.946582 7f5807fff6c0 Recovering log #278 | ||||||
| 2023/10/01-21:07:46.010997 7f5807fff6c0 Delete type=3 #272 | 2023/10/01-21:10:38.956394 7f5807fff6c0 Delete type=3 #276 | ||||||
| 2023/10/01-21:07:46.011125 7f5807fff6c0 Delete type=0 #274 | 2023/10/01-21:10:38.956460 7f5807fff6c0 Delete type=0 #278 | ||||||
| 2023/10/01-21:08:33.133970 7f58067fc6c0 Level-0 table #279: started | 2023/10/01-21:13:13.362008 7f58067fc6c0 Level-0 table #283: started | ||||||
| 2023/10/01-21:08:33.134046 7f58067fc6c0 Level-0 table #279: 0 bytes OK | 2023/10/01-21:13:13.362069 7f58067fc6c0 Level-0 table #283: 0 bytes OK | ||||||
| 2023/10/01-21:08:33.176099 7f58067fc6c0 Delete type=0 #277 | 2023/10/01-21:13:13.368748 7f58067fc6c0 Delete type=0 #281 | ||||||
| 2023/10/01-21:08:33.176487 7f58067fc6c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.383538 7f58067fc6c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) | ||||||
| 2023/10/01-21:08:33.176588 7f58067fc6c0 Manual compaction at level-1 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.383607 7f58067fc6c0 Manual compaction at level-1 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) | ||||||
|   | |||||||
										
											Binary file not shown.
										
									
								
							| @@ -1 +1 @@ | |||||||
| MANIFEST-000280 | MANIFEST-000284 | ||||||
|   | |||||||
| @@ -1,8 +1,3 @@ | |||||||
| 2023/10/01-21:10:39.001525 7f5807fff6c0 Recovering log #278 | 2023/10/03-07:03:02.771255 7f9ff27fc6c0 Recovering log #282 | ||||||
| 2023/10/01-21:10:39.012047 7f5807fff6c0 Delete type=3 #276 | 2023/10/03-07:03:02.782160 7f9ff27fc6c0 Delete type=3 #280 | ||||||
| 2023/10/01-21:10:39.012110 7f5807fff6c0 Delete type=0 #278 | 2023/10/03-07:03:02.782255 7f9ff27fc6c0 Delete type=0 #282 | ||||||
| 2023/10/01-21:13:13.391014 7f58067fc6c0 Level-0 table #283: started |  | ||||||
| 2023/10/01-21:13:13.391059 7f58067fc6c0 Level-0 table #283: 0 bytes OK |  | ||||||
| 2023/10/01-21:13:13.397210 7f58067fc6c0 Delete type=0 #281 |  | ||||||
| 2023/10/01-21:13:13.405890 7f58067fc6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) |  | ||||||
| 2023/10/01-21:13:13.405954 7f58067fc6c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) |  | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| 2023/10/01-21:07:46.059107 7f5807fff6c0 Recovering log #274 | 2023/10/01-21:10:39.001525 7f5807fff6c0 Recovering log #278 | ||||||
| 2023/10/01-21:07:46.070473 7f5807fff6c0 Delete type=3 #272 | 2023/10/01-21:10:39.012047 7f5807fff6c0 Delete type=3 #276 | ||||||
| 2023/10/01-21:07:46.070701 7f5807fff6c0 Delete type=0 #274 | 2023/10/01-21:10:39.012110 7f5807fff6c0 Delete type=0 #278 | ||||||
| 2023/10/01-21:08:33.236588 7f58067fc6c0 Level-0 table #279: started | 2023/10/01-21:13:13.391014 7f58067fc6c0 Level-0 table #283: started | ||||||
| 2023/10/01-21:08:33.236629 7f58067fc6c0 Level-0 table #279: 0 bytes OK | 2023/10/01-21:13:13.391059 7f58067fc6c0 Level-0 table #283: 0 bytes OK | ||||||
| 2023/10/01-21:08:33.272000 7f58067fc6c0 Delete type=0 #277 | 2023/10/01-21:13:13.397210 7f58067fc6c0 Delete type=0 #281 | ||||||
| 2023/10/01-21:08:33.348414 7f58067fc6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.405890 7f58067fc6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) | ||||||
| 2023/10/01-21:08:33.348547 7f58067fc6c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) | 2023/10/01-21:13:13.405954 7f58067fc6c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) | ||||||
|   | |||||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								packs/tables-des-traductions/MANIFEST-000284
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								packs/tables-des-traductions/MANIFEST-000284
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
		Reference in New Issue
	
	Block a user