Less extra stuff... less log entries and warnings.

This commit is contained in:
Scott Idem
2024-11-20 15:40:50 -05:00
parent f6378c1a23
commit 125ce32ddd
4 changed files with 18 additions and 21 deletions

View File

@@ -1,12 +1,12 @@
<script lang="ts">
export let log_lvl = 1;
import { createEventDispatcher, onDestroy, onMount } from 'svelte';
// import { createEventDispatcher, onDestroy, onMount } from 'svelte';
import { fade } from 'svelte/transition';
import type { key_val } from '$lib/ae_stores';
import { ae_util } from '$lib/ae_utils/ae_utils';
import { core_func } from '$lib/ae_core/ae_core_functions';
import { api } from '$lib/api';
// import { core_func } from '$lib/ae_core/ae_core_functions';
// import { api } from '$lib/api';
import { ae_snip, ae_loc, ae_sess, ae_api, ae_trig, slct, slct_trigger } from '$lib/ae_stores';
import { idaa_loc, idaa_sess, idaa_slct } from '$lib/ae_idaa_stores';
import { posts_func } from '$lib/ae_posts/ae_posts_functions';

View File

@@ -1,20 +1,20 @@
<script lang="ts">
// *** Import Aether core variables and functions
export let log_lvl = 1;
import type { key_val } from '$lib/ae_stores';
export let log_lvl = 0;
// import type { key_val } from '$lib/ae_stores';
import { ae_snip, ae_loc, ae_sess, ae_api, ae_trig, slct, slct_trigger } from '$lib/ae_stores';
import { idaa_loc, idaa_sess, idaa_slct, idaa_trig, idaa_prom } from '$lib/ae_idaa_stores';
import { posts_func } from '$lib/ae_posts/ae_posts_functions';
// import { posts_func } from '$lib/ae_posts/ae_posts_functions';
let ae_promises: key_val = {};
let ae_tmp: key_val = {};
let ae_trigger: any = null;
let ae_triggers: key_val = {};
let search_submit_results: any = null;
// let ae_promises: key_val = {};
// let ae_tmp: key_val = {};
// let ae_trigger: any = null;
// let ae_triggers: key_val = {};
// let search_submit_results: any = null;
if (log_lvl) console.log('** Component Loaded: ** Post Options');
</script>