-
-
Save jedsada-gh/56d8863d508393052ccf16a5309f1321 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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