mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 22:03:12 +00:00
Convert the create_export_array message to flog
This commit is contained in:
parent
e05a0716e5
commit
79ee59adc0
2 changed files with 3 additions and 1 deletions
|
@ -581,7 +581,7 @@ std::shared_ptr<const null_terminated_array_t<char>> env_scoped_impl_t::create_e
|
||||||
const {
|
const {
|
||||||
var_table_t table;
|
var_table_t table;
|
||||||
|
|
||||||
debug(4, L"create_export_array() recalc");
|
FLOG(env_export, L"create_export_array() recalc");
|
||||||
var_table_t vals;
|
var_table_t vals;
|
||||||
get_exported(this->globals_, vals);
|
get_exported(this->globals_, vals);
|
||||||
get_exported(this->locals_, vals);
|
get_exported(this->locals_, vals);
|
||||||
|
|
|
@ -63,6 +63,8 @@ class category_list_t {
|
||||||
|
|
||||||
category_t env_locale{L"env-locale", L"Changes to locale variables"};
|
category_t env_locale{L"env-locale", L"Changes to locale variables"};
|
||||||
|
|
||||||
|
category_t env_export{L"env-export", L"Changes to exported variables"};
|
||||||
|
|
||||||
category_t topic_monitor{L"topic-monitor", L"Internal details of the topic monitor"};
|
category_t topic_monitor{L"topic-monitor", L"Internal details of the topic monitor"};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue