java - Logging variable's javadoc -


i'm using crashlytics android app. i'd log exceptions descriptive messages.

one idea of mine when starting activity, if there error results in code finishing activity set result "result_error" , add data intent error code. in onactivityresult i'm logging exception with

int error_code = data.getintextra(const.key_error_code, const.error_unknown); crashlytics.logexception(new exception(integer.tostring(error_code))); 

i string i'm logging contain description of error_code. describe error code in javadoc variable, there way retrieve javadoc variable string?

any suggestions? thanks.


Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -