I include "base/logging.h"
and try to print message use LOG(ERROR), It seems not the correct way to print log.
```
../../v8/src/heap/base/stack.cc:139:9: error: use of undeclared identifier 'ERROR'
139 | LOG(ERROR) << "seg start:." << segment.start << ", stack_align:0x" << std::hex << kMinStackAlignment;
| ^
1 error generated.
```
or
```
In file included from ../../base/logging.h:17:
../../base/compiler_specific.h:98:9: error: 'ALIGNAS' macro redefined [-Werror,-Wmacro-redefined]
98 | #define ALIGNAS(byte_alignment) alignas(byte_alignment)
| ^
../../v8/src/base/compiler-specific.h:135:9: note: previous definition is here
135 | #define ALIGNAS(byte_alignment) __attribute__((aligned(byte_alignment)))
| ^
```