diff options
| author | rxi <rxi@users.noreply.github.com> | 2020-05-07 13:41:39 +0100 |
|---|---|---|
| committer | rxi <rxi@users.noreply.github.com> | 2020-05-07 13:41:39 +0100 |
| commit | 5acc3912886df1d8b8bbeef89c9c46ec19d1e0cd (patch) | |
| tree | 93526e73e1777d0678f33cc1c0966c6846ba1f18 /data/core | |
| parent | 596b40c74129feba775f6ba0d3a99a9c3cc9ebcf (diff) | |
| download | pragtical-5acc3912886df1d8b8bbeef89c9c46ec19d1e0cd.tar.gz pragtical-5acc3912886df1d8b8bbeef89c9c46ec19d1e0cd.zip | |
Added logging when project module is loaded
Diffstat (limited to 'data/core')
| -rw-r--r-- | data/core/init.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/core/init.lua b/data/core/init.lua index 1626fca7..18a56036 100644 --- a/data/core/init.lua +++ b/data/core/init.lua @@ -174,6 +174,7 @@ function core.load_project_module() local fn, err = loadfile(filename) if not fn then error("Error when loading project module:\n\t" .. err) end fn() + core.log_quiet("Loaded project module") end) end return true |
