Skip to content

Instantly share code, notes, and snippets.

@ysoftware
Created June 5, 2019 12:05
Show Gist options
  • Save ysoftware/8401e0079f90324e82c7dc9af0ec49f2 to your computer and use it in GitHub Desktop.
Save ysoftware/8401e0079f90324e82c7dc9af0ec49f2 to your computer and use it in GitHub Desktop.
Testing-1
#define DEBUG true // change to false for production env.
#if DEBUG
#define PRINT(x, y) {
eosio::print(x);
eosio::print(": ");
eosio::print(y);
eosio::print("\n");
}
#define PRINT_(x) {
eosio::print(x);
eosio::print("\n");
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment