Back to project page CloudCopyPaster.
The source code is released under:
Copyright (c) 2014, Dima Moiseev Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of s...
If you think the Android project CloudCopyPaster listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.newbilius.WinCopyPast; /* w w w . java 2 s. com*/ public class Log { private static final String DebugKey="hhh"; public static void Debug(String s){ //android.util.Log.d(DebugKey,s); } public static void Error(String s){ android.util.Log.e(DebugKey,s); } public static void Error(Error e){ android.util.Log.e(DebugKey,e.getMessage()); } }