Here you can find the source of log(String text)
static public void log(String text)
//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); } }