diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-15 15:51:40 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-15 15:51:40 +0200 |
| commit | b25a939e2d8b045c083caf3264c4e5aac1cf88fb (patch) | |
| tree | 37b862c82389ceddcf4624b5e26536390d6b8265 /tools/100_checkdata | |
| parent | b02c083a3545b6e6b36ab62680128edec619a804 (diff) | |
| download | nissy-core-b25a939e2d8b045c083caf3264c4e5aac1cf88fb.tar.gz nissy-core-b25a939e2d8b045c083caf3264c4e5aac1cf88fb.zip | |
Better logging function
Now it is possible to provide some data together with the logging function.
This is useful for example in C++, where I can now provide an arbitrary
callable object as data, and a simple wrapper function that call the
callable object as logging function.
Diffstat (limited to 'tools/100_checkdata')
| -rw-r--r-- | tools/100_checkdata/checkdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/100_checkdata/checkdata.c b/tools/100_checkdata/checkdata.c index 5b3db2c..00875fa 100644 --- a/tools/100_checkdata/checkdata.c +++ b/tools/100_checkdata/checkdata.c | |||
| @@ -41,7 +41,7 @@ int main(int argc, char **argv) { | |||
| 41 | 41 | ||
| 42 | solver = argv[1]; | 42 | solver = argv[1]; |
| 43 | filename = argv[2]; | 43 | filename = argv[2]; |
| 44 | nissy_setlogger(log_stderr); | 44 | nissy_setlogger(log_stdout, NULL); |
| 45 | 45 | ||
| 46 | timerun(run); | 46 | timerun(run); |
| 47 | 47 | ||
