Skip to content

Commit a23f4fb

Browse files
committedFeb 5, 2016
Switched TAG to use getSimpleName()
This will match the string format style used previously
1 parent 9371151 commit a23f4fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎project_and_code_guidelines.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ As a general rule, we use the class name as tag and we define it as a `static fi
283283

284284
```java
285285
public class MyClass {
286-
private static final String TAG = MyClass.class.getName();
286+
private static final String TAG = MyClass.class.getSimpleName();
287287

288288
public myMethod() {
289289
Log.e(TAG, "My error message");

0 commit comments

Comments
 (0)