diff options
| author | Marvin Scholz <epirat07@gmail.com> | 2022-03-29 23:59:44 +0200 |
|---|---|---|
| committer | Xavier Claessens <xclaesse@gmail.com> | 2022-03-30 06:57:30 -0400 |
| commit | 2cdddbab56ffdbca6accfc626521968fbe2c917e (patch) | |
| tree | 16a0fd27f509d7a4ae0dd41fdd8eeaaa1a679a76 /test cases/unit/104 debug function | |
| parent | 969ae6e0e1ffe3d1acb6ef0ef93c809b566a3ea1 (diff) | |
| download | meson-2cdddbab56ffdbca6accfc626521968fbe2c917e.tar.gz | |
Add new debug() function
Adds a new debug() function that can be used in the meson.build to
log messages to the meson-log.txt that will not be printed to stdout
when configuring the project.
Diffstat (limited to 'test cases/unit/104 debug function')
| -rw-r--r-- | test cases/unit/104 debug function/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test cases/unit/104 debug function/meson.build b/test cases/unit/104 debug function/meson.build new file mode 100644 index 000000000..c3f4c769f --- /dev/null +++ b/test cases/unit/104 debug function/meson.build @@ -0,0 +1,4 @@ +project('debug function', 'c') + +debug('This is an example debug output, should only end up in debug log') +debug('Test logging other things', true, 1, ['Array'], {'Key' : 'Value'}) |
