diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-21 16:22:39 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-21 16:22:39 +0100 |
| commit | a77ff6a4df6bc52d94994191d013ac03fc650f86 (patch) | |
| tree | 9c8fef86465bfcde1fe50d130d7e6f00b33f85a8 | |
| parent | 520105d93555aa56557e7afaecec976e354f3fee (diff) | |
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | .github/PULL_REQUEST_TEMPLATE.md | 10 | ||||
| -rw-r--r-- | src/kernel/KernelKit/DebugOutput.h | 4 |
2 files changed, 8 insertions, 6 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 493fdefb..d4456542 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,12 +1,14 @@ # [PR]: <Title of PR> +## Description: + <Describe briefly your PR here.> -## Rationale: +### PR Rationale: <Describe the rationale here> -## Process: +### PR Process: <Describe your process here> @@ -14,7 +16,7 @@ <Describe the results here> -## Additionals: - +### Additional Informations: +<Describe additional information (Optional)> diff --git a/src/kernel/KernelKit/DebugOutput.h b/src/kernel/KernelKit/DebugOutput.h index 3695602e..4a705804 100644 --- a/src/kernel/KernelKit/DebugOutput.h +++ b/src/kernel/KernelKit/DebugOutput.h @@ -185,7 +185,7 @@ inline TerminalDevice& operator<<(TerminalDevice& src, const Long& num) { #undef kout #endif // ifdef kout -#define kout TerminalDevice::The() +#define kout TerminalDevice::The() << __FILE__ << ": " #ifdef kendl #undef kendl @@ -197,7 +197,7 @@ inline TerminalDevice& operator<<(TerminalDevice& src, const Long& num) { #undef kout8 #endif // ifdef kout8 -#define kout8 Utf8TerminalDevice::The() +#define kout8 Utf8TerminalDevice::The() << __FILE__ << ": " #ifdef kendl8 #undef kendl8 |
