Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jedsada-gh/56d8863d508393052ccf16a5309f1321 to your computer and use it in GitHub Desktop.
Save jedsada-gh/56d8863d508393052ccf16a5309f1321 to your computer and use it in GitHub Desktop.
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Timber.i("I'm %d years old", 22);
Timber.d("GPA : %.2f", 3.56);
Timber.wtf("%s %d %s %s %.2f", "I have ", 2, "cars", " and I have a money ", 1500.00);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment