1
0

🔨」 fix(Harl 2.0): Add funny message

This commit is contained in:
2024-11-09 19:17:03 +01:00
parent cc691120db
commit a79d65eb28

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */ /* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/09 17:15:01 by adjoly #+# #+# */ /* Created: 2024/11/09 17:15:01 by adjoly #+# #+# */
/* Updated: 2024/11/09 17:39:12 by adjoly ### ########.fr */ /* Updated: 2024/11/09 19:16:07 by adjoly ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -26,17 +26,17 @@ void Harl::complain(std::string level) {
} }
void Harl::debug(void) { void Harl::debug(void) {
std::cout << "I love having extra bacon for my 7XL-double-cheese-triple-pickle-specialketchup burger. I really do!" << std::endl; std::cout << "[DEBUG]: NixOS is the only true answer" << std::endl;
} }
void Harl::info(void) { void Harl::info(void) {
std::cout << "I cannot believe adding extra bacon costs more money. You didnt put enough bacon in my burger! If you did, I wouldnt be asking for more!" << std::endl; std::cout << "[INFO]: NixOS is on 24.05" << std::endl;
} }
void Harl::warning(void) { void Harl::warning(void) {
std::cout << "I think I deserve to have some extra bacon for free. Ive been coming for years whereas you started working here since last month." << std::endl; std::cout << "[WARNING]: Please no Ubuntu here" << std::endl;
} }
void Harl::error(void) { void Harl::error(void) {
std::cout << "This is unacceptable! I want to speak to the manager now." << std::endl; std::cout << "[ERROR]: Arch issue switch to NixOS please for god sake" << std::endl;
} }