Android Log log(String text)

Here you can find the source of log(String text)

Description

log

License

MIT License

Declaration

static public void log(String text) 

Method Source Code

//package com.java2s;
/**/*from ww  w  .  ja  v a  2  s.c  om*/
 * Android Easy Layout
 * Copyright (c) chicketen
 *
 * Licensed under The MIT License.
 * For full copyright and license information, please see the LICENSE.txt
 */

import android.util.Log;

public class Main {
    static public void log(String text) {
        Log.i("AEL", text);
    }
}

Related

  1. Log(String msg1, int msg)
  2. logd(String msg)
  3. loge(String msg)
  4. logi(String msg)
  5. logw(String msg)
  6. logError(Object errorClass, String msg, Exception e)
  7. logError(String errorClass, String msg, Exception e)
  8. e(Class clazz, String message)
  9. write(String path, String log)