Skip to content

Commit

Permalink
Fix v1.0 mini logging debug with default settings
Browse files Browse the repository at this point in the history
Changed the global debug variable initial value to false.
This fixes the ZuluSCSI v1.0 mini logging issue discovered in the
following issue: #385
Thanks to @dramirez1972 for finding the bug.
  • Loading branch information
morio committed Feb 22, 2024
1 parent ad46523 commit 12068a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ZuluSCSI_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <ZuluSCSI_platform.h>

// Use variables for version number
#define FW_VER_NUM "24.02.15"
#define FW_VER_NUM "24.02.22"
#define FW_VER_SUFFIX "dev"
#define ZULU_FW_VERSION FW_VER_NUM "-" FW_VER_SUFFIX

Expand Down
2 changes: 1 addition & 1 deletion src/ZuluSCSI_log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

const char *g_log_firmwareversion = ZULU_FW_VERSION " " __DATE__ " " __TIME__;

bool g_log_debug = true;
bool g_log_debug = false;

// This memory buffer can be read by debugger and is also saved to zululog.txt
#define LOGBUFMASK (LOGBUFSIZE - 1)
Expand Down

0 comments on commit 12068a6

Please sign in to comment.