Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisDevDane committed Jul 2, 2020
1 parent 876c4bd commit 787e382
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion generator_v2/main.odin
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ output_enums :: proc(json_path: string, output_path: string) {
clean_field_key :: proc(key: string, enum_name: string) -> string {
key := key;
key = strings.trim_space(key);
log.debug(key);
key = key[len(enum_name):];
key = strings.trim(key, "_");
key = strings.to_pascal_case(key);
Expand Down

0 comments on commit 787e382

Please sign in to comment.