-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Sucharda
committed
Apr 11, 2022
1 parent
b59949d
commit b4bc047
Showing
5 changed files
with
171 additions
and
300 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
package cz.eman.logging.lint | ||
|
||
class ModifiedFile { | ||
|
||
fun runLogDebug() { | ||
logDebug { "Log debug" } | ||
logDebug("Log debug") | ||
logDebug { "Log debug $var" } | ||
logDebug("Log debug $var") | ||
logDebug { | ||
"Log debug" | ||
} | ||
logDebug( | ||
"Log debug" | ||
) | ||
logDebug { | ||
"Log debug $var" | ||
} | ||
logDebug( | ||
"Log debug $var" | ||
) | ||
logDebug { | ||
"Log debug" | ||
+"Second line" | ||
} | ||
logDebug( | ||
"Log debug" | ||
+ "Second line" | ||
) | ||
logDebug { | ||
"Log debug" | ||
+"Second line $var" | ||
} | ||
logDebug( | ||
"Log debug" | ||
+ "Second line $var" | ||
) | ||
} | ||
|
||
fun runLogInfo() { | ||
logInfo { "Log debug" } | ||
logInfo("Log debug") | ||
logInfo { "Log debug $var" } | ||
logInfo("Log debug $var") | ||
logInfo { | ||
"Log debug" | ||
} | ||
logInfo( | ||
"Log debug" | ||
) | ||
logInfo { | ||
"Log debug $var" | ||
} | ||
logInfo( | ||
"Log debug $var" | ||
) | ||
logInfo { | ||
"Log debug" | ||
+"Second line" | ||
} | ||
logInfo( | ||
"Log debug" | ||
+ "Second line" | ||
) | ||
logInfo { | ||
"Log debug" | ||
+"Second line $var" | ||
} | ||
logInfo( | ||
"Log debug" | ||
+ "Second line $var" | ||
) | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
package cz.eman.logging.lint | ||
|
||
class NewFile { | ||
|
||
fun runLogDebug() { | ||
logDebug { "Log debug" } | ||
logDebug("Log debug") | ||
logDebug { "Log debug $var" } | ||
logDebug("Log debug $var") | ||
logDebug { | ||
"Log debug" | ||
} | ||
logDebug( | ||
"Log debug" | ||
) | ||
logDebug { | ||
"Log debug $var" | ||
} | ||
logDebug( | ||
"Log debug $var" | ||
) | ||
logDebug { | ||
"Log debug" | ||
+"Second line" | ||
} | ||
logDebug( | ||
"Log debug" | ||
+ "Second line" | ||
) | ||
logDebug { | ||
"Log debug" | ||
+"Second line $var" | ||
} | ||
logDebug( | ||
"Log debug" | ||
+ "Second line $var" | ||
) | ||
} | ||
|
||
fun runLogInfo() { | ||
logInfo { "Log debug" } | ||
logInfo("Log debug") | ||
logInfo { "Log debug $var" } | ||
logInfo("Log debug $var") | ||
logInfo { | ||
"Log debug" | ||
} | ||
logInfo( | ||
"Log debug" | ||
) | ||
logInfo { | ||
"Log debug $var" | ||
} | ||
logInfo( | ||
"Log debug $var" | ||
) | ||
logInfo { | ||
"Log debug" | ||
+"Second line" | ||
} | ||
logInfo( | ||
"Log debug" | ||
+ "Second line" | ||
) | ||
logInfo { | ||
"Log debug" | ||
+"Second line $var" | ||
} | ||
logInfo( | ||
"Log debug" | ||
+ "Second line $var" | ||
) | ||
} | ||
} |
Oops, something went wrong.