mirror of
https://github.com/asdlokj1qpi233/subconverter.git
synced 2025-10-29 04:42:33 +00:00
Add exprtimental support for generating Mellow configuration. Add proxy customization for downloading rulesets and subscriptions. Add more customizations in manage URL arguments. Optimize codes. INIReader: Fix line break remove not working.
14 lines
229 B
C++
14 lines
229 B
C++
#include <string>
|
|
#include <iostream>
|
|
|
|
#include "logger.h"
|
|
|
|
extern bool print_debug_info;
|
|
|
|
void writeLog(int type, std::string content)
|
|
{
|
|
//placeholder
|
|
if(print_debug_info)
|
|
std::cerr<<"[DEBUG] "<<content<<"\n";
|
|
}
|