# klog **Repository Path**: cageq/klog ## Basic Information - **Project Name**: klog - **Description**: tiny easy log lib - **Primary Language**: C++ - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2021-01-18 - **Last Updated**: 2022-03-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # klog tiny easy log lib wrapper ### Usage : ### Provide three different apis ```cpp //xput api dput("hello " , 2021 ); // no format ,put all in parameters //xlog api dlog("hello {}", 2021); // python like format use {} as format //xout api dout << "hello" << 2021 ; // stream output ```