diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2025-06-25 17:48:04 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2025-06-25 17:48:04 +0200 |
| commit | 344eea71fbf1863106bc051dbae11534e7dcca74 (patch) | |
| tree | afb93528027d91d2c7febe2b1334f964db8f402e /src/server/build.odin | |
| parent | 312a15dd5752e8c90b57ea4911e5fb29525deee1 (diff) | |
Improve use of runtime procedures without importing the actual package.
Diffstat (limited to 'src/server/build.odin')
| -rw-r--r-- | src/server/build.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/build.odin b/src/server/build.odin index d3b8572..d4d0b90 100644 --- a/src/server/build.odin +++ b/src/server/build.odin @@ -278,7 +278,7 @@ setup_index :: proc() { builtin_path := path.join({dir_exe, "builtin"}, context.temp_allocator) if !os.exists(builtin_path) { - log.error("Failed to find the builtin folder at %v", builtin_path) + log.errorf("Failed to find the builtin folder at %v", builtin_path) } try_build_package(builtin_path) |