//Print error code and error information for an exception.
        //@param exception indicating an exception object
        //@param api       api name

        private void PrintFailureMessage(System.Exception exception, string api)
        {
            CommonUtil.PrintFailureMessage(TAG, exception, api, LogInfoView);
        }
Beispiel #2
0
        //Print error code and error information for an exception.
        //@param exception indicating an exception object
        //@param api       api name

        public void PrintFailureMessage(Exception exception, String api)
        {
            CommonUtil.PrintFailureMessage(TAG, exception, api, LogInfoView);
        }
        //TextView to send the operation result logs to the logcat and to the UI

        private void Logger(string str)
        {
            CommonUtil.Logger(str, TAG, LogInfoView);
        }
Beispiel #4
0
 public void Logger(string str)
 {
     CommonUtil.Logger(str, TAG, LogInfoView);
 }