diff options
author | 2021-08-23 02:41:36 -0700 | |
---|---|---|
committer | 2021-08-23 02:41:36 -0700 | |
commit | 04467b82d3a8c10f17ff0844f8d5e844336b1917 (patch) | |
tree | 6d324ce99e4fb5bb787445e8e906053f537345ca /src | |
parent | a3cfd26125bbb5fdb2872c1b3d511ccbf6f3fc4c (diff) | |
download | bun-04467b82d3a8c10f17ff0844f8d5e844336b1917.tar.gz bun-04467b82d3a8c10f17ff0844f8d5e844336b1917.tar.zst bun-04467b82d3a8c10f17ff0844f8d5e844336b1917.zip |
Disable verbose fs
Former-commit-id: dc7b2c059f3db6ca4f0e91d659b7a7269ed60263
Diffstat (limited to 'src')
-rw-r--r-- | src/feature_flags.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature_flags.zig b/src/feature_flags.zig index 1efb55a10..1efd806e8 100644 --- a/src/feature_flags.zig +++ b/src/feature_flags.zig @@ -34,7 +34,7 @@ pub const css_supports_fence = true; pub const enable_entry_cache = true; pub const enable_bytecode_caching = false; -pub const verbose_fs = true; +pub const verbose_fs = false; pub const watch_directories = true; |