30 lines
1.4 KiB
C++
30 lines
1.4 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Main.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: lfirmin <lfirmin@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/07/02 10:08:12 by lfirmin #+# #+# */
|
|
/* Updated: 2025/07/02 10:08:56 by lfirmin ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "Harl.hpp"
|
|
|
|
int main (void)
|
|
{
|
|
Harl harl;
|
|
|
|
std::cout << std::endl << "====DEBUG Level====" << std::endl;
|
|
harl.complain("DEBUG");
|
|
std::cout << std::endl << "====INFO Level====" << std::endl;;
|
|
harl.complain("INFO");
|
|
std::cout << std::endl << "====WARNING Level====" << std::endl;
|
|
harl.complain("WARNING");
|
|
std::cout << std::endl << "====ERROR Level====" << std::endl;
|
|
harl.complain("ERROR");
|
|
std::cout << std::endl << "====No valid Level====" << std::endl;
|
|
harl.complain("ALARM");
|
|
return (0);
|
|
} |