change access level of LOGGER (#14558)

Co-authored-by: Bach <xuan_bach_nguyen@earthbrain.com>
This commit is contained in:
Bach 2023-02-08 21:07:03 +09:00 committed by GitHub
parent 4c8e230e50
commit 98333492cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
new.sh
View File

@ -158,7 +158,7 @@ import org.slf4j.LoggerFactory;
public class ${lang_classname} extends DefaultCodegen implements CodegenConfig {
public static final String PROJECT_NAME = "projectName";
static final Logger LOGGER = LoggerFactory.getLogger(${lang_classname}.class);
private final Logger LOGGER = LoggerFactory.getLogger(${lang_classname}.class);
public CodegenType getTag() {
return CodegenType.${codegen_type_enum};