7879808182838485
+ "Random number: " + rand + " (generator: " + URandomService.getURandomService().identifyGenerator( randomGenerator) + ")"); logger_st.error("Stack trace: ", new UIdentifyCallerException()); return rand; }
93949596979899100
+ "Random number: " + rand + " (generator: Static call)"); logger.debug("Normal static (mean: " + mean + "/std: " + std + ")> Random number: " + rand); logger_st.error("Stack trace: ", new UIdentifyCallerException()); return rand; }
*/ @Override public int nextIntFromTo(int from, int to) { int rand = super.nextIntFromTo(from, to); log(rand); logger_st.error("Stack trace: ", new UIdentifyCallerException()); return rand; }
9596979899100101102
+ "> Random number: " + rand + " (generator: " + URandomService.getURandomService().identifyGenerator( randomGenerator) + ")"); logger_st.error("Stack trace: ", new UIdentifyCallerException()); return rand; }
106107108109110111112113
*/ @Override public double nextDouble() { double rand = super.nextDouble(); log(rand); logger_st.error("Stack trace: ", new UIdentifyCallerException()); return rand; }
118119120121122123124125
*/ @Override public double nextDoubleFromTo(double from, double to) { double rand = super.nextDoubleFromTo(from, to); log(rand); logger_st.error("Stack trace: ", new UIdentifyCallerException()); return rand; }
130131132133134135136137
*/ @Override public float nextFloatFromTo(float from, float to) { float rand = super.nextFloatFromTo(from, to); log(rand); logger_st.error("Stack trace: ", new UIdentifyCallerException()); return rand; }
142143144145146147148149
*/ @Override public int nextInt() { int rand = super.nextInt(); log(rand); logger_st.error("Stack trace: ", new UIdentifyCallerException()); return rand; }
154155156157158159160161
*/ @Override public long nextLongFromTo(long from, long to) { long rand = super.nextLongFromTo(from, to); log(rand); logger_st.error("Stack trace: ", new UIdentifyCallerException()); return rand; }