Posts

Showing posts from March, 2010

go - Golang - Read Os.stdin input but don't echo it -

in golang program i'm reading os.stdin input bufio.reader. after enter pressed, program reads input , printed onto console. possible not print input onto console? after reading it, process input , reprint (and no longer need original input). i read data this: inputreader := bufio.newreader(os.stdin) { outgoing, _ := inputreader.readstring('\n') outs <- outgoing } i cannot think other methods use ansi escape codes clear terminal , move cursor specific location (in case column 1:row 1). var screen *bytes.buffer = new(bytes.buffer) var output *bufio.writer = bufio.newwriter(os.stdout) and here basic helper methods ease job working terminal. // move cursor given position func movecursor(x int, y int) { fmt.fprintf(screen, "\033[%d;%dh", x, y) } // clear terminal func clearterminal() { output.writestring("\033[2j") } then inside function need clear terminal , move cursor first column , first row of terminal wind

scala - Constructor TransportClient in class TransportClient cannot be accessed -

i wrote following class indexing documents in elasticsearch: import java.net.inetaddress import com.typesafe.config.configfactory import org.elasticsearch.client.transport.transportclient import org.elasticsearch.common.settings.settings import org.elasticsearch.common.transport.inetsockettransportaddress import play.api.libs.json.{jsstring, jsvalue} /** * created liana on 12/07/16. */ class elasticsearchconnector { private var transportclient: transportclient = null private val host = "localhost" private val port = 9300 private val cluster = "elasticsearch" private val indexname = "tests" private val doctype = "test" def configelasticsearch(): unit = { val settings = settings.settingsbuilder().put("cluster.name", cluster).build() transportclient = new transportclient(settings) transportclient.addtransportaddress(new inetsockettransportaddress(inetaddress.getbyname(host), port.toint)) } def

angularjs - Angular digest loop -

i have problem app because creates infinite loop cycle when trying generate form. form generated based on json (example in code). problem occurs when go step , go form. have no idea causes problem because happens when state loaded second time. possible angular keep watchers created in previous state , overlaps each other? whole idea app have form definition in "form" section, there "schema" define each model element , @ end there "model" stores variables. <schema-form data-name = "theemployeeform" data-schema = "$ctrl.json.all_fields.schema" data-form = "$ctrl.json.all_fields.form" data-model = "$ctrl.json.model"> </schema-form> to see error please open chrome inspector and: home -> form -> home -> form error: [$rootscope:infdig] app example on plunker https://plnkr.co/edit/nkdzwlueo0rauzt1jpoj?p=preview see if have created watch of own on propert

php - Show dimensions in product page for opencart -

i need display product dimensions in product page. here code not executed. added in catalog/controller/product/product.php <?php $this->data['length'] = number_format($product_info['length'],2) . ' cm'; $this->data['width'] = number_format($product_info['width'],2) . ' cm'; $this->data['height'] = number_format($product_info['height'],2) . ' cm'; and in same file $this->data['text_dimensions'] = $this->language->get('text_dimensions'); $this->data['text_by'] = $this->language->get('text_by'); and in catalog/view/theme/default/template/product/product.tpl <?php echo $length; ?><?php echo $text_by; ?><?php echo width; ?><?php echo $text_by; ?><?php echo $height; ?><?php echo $text_by; ?> and in catalog/language/english/product/product.php $_['text_dimensions'] = 'dimension

angular - “Has no exported member ionicBootstrap” (ionic2 Typescript) -

i have such error: has no exported member ionicbootstrap. ionicbootstrap introduced in ionic-angular 2.0.0-beta.8. upgrade 2.0.0-beta.32 , error still remains. can be? i had problem well. turned out had 2 typings ionic , cordova-ionic appeared outdated. installed starter see if had same problem did not. starter project did not have typings removed them , ran typings prune . after project rebuilt error gone. looks typings included in ionic-angular package npm. also screenshot posted looks still have 2.0.0-beta.7 . try running npm install --save @2.0.0-beta.8

SAS SQL or data step: How to select values that begin with different numbers -

maybe title bit blurry, hope understand question. background: work data university students, , have been given task of calculating grade point averages exams on specific semester subset of predefined students. time span of data 10 years , activity names exams varies across time. my problem: data has hierarchy structure level of education, semester , activity names. how can use data step/sql on lowest level select values beginning value top hierarchy. the hierarchy following (for single student): 13109963 1310996300001 131099630000100001 13109963000010000100001 (activities) 13109963000010000100002 (activities) 13109963000010000100003 (activities) i have struggled few hours, , appreciate suggestions how proceed on special problem. have been using sas 3 years , have background social sciences. thank in advance henning there few options in sas let accomplish task. here quick example. data sample; length level $60.; input level $1-60; /*option 1 subset obs

php - Trying to get property of non object Laravel 5.2 -

the error occurs when print messages logged in user sent others him. did var_dump in controller in view. did {{$threads->count()}} in view , showed 27(thread count). when access view file throws me above mentioned error. here controller code public function index() { $currentuserid = auth::user()->id; $threads = thread::getalllatest()->get(); return view('chatindex', compact('threads', 'currentuserid')); } i printed currentuserid in view , works fine here view code (where error occurs) @extends('layouts.app') @section('content') @if (session::has('error_message')) <div class="alert alert-danger" role="alert"> {!! session::get('error_message') !!} </div> @endif @if($threads->count() > 0) @foreach($threads $thread) <?php $class = $thread->isunread($currentuserid) ? 'alert-info' : ''

Find a store in a variable the full path of a folder if exist in BASH -

i need obtain full path of folder (if exists) match specific names. there 1 folder matches name. e.g: code must find, if exists, folder these possible names: /home/user/myfolder /home/user/myfolder_aaa /home/user/myfolder_bbb /home/user/myfolder_ccc but it must not match other "similar" folder, like /home/user/myfolder_xxx and if folder exists need save in variable full path matching unwanted cases , not retry full path: path=`ls /home/user/myfolder*` you can use find regex: find ./home/user -regextype posix-extended -type f -regex '.*/myfolder(_(aaa|bbb|ccc))?$' to store results in array (as don't appear have whitespace in these folder names): arr=() while ifs= read -r f; arr+=( "$f" ) done < <(find /home/user -regextype posix-extended -type f -regex '.*/myfolder(_(aaa|bbb|ccc))?$' -print0) # check array contents declare -p arr

php - How to display words before last character / of a date? -

i have date in format "2015/06/15". want "2015/06" output string. how that? you can several way: like: echo date("y/m", strtotime("2015/06/15")) $arrdt = explode("/", "2015/06/15"); $newdt = $arrdt[0]."/".$arrdt[1];

php - Laravel 5 error can't create new models -

for reason error. using new model logospinner.php. i't located in app/models, old models working not new one. fatalerrorexception in handler.php line 25: uncaught typeerror: argument 1 passed app\exceptions\handler::report() must instance of exception, instance of error given, called in /home/vagrant/code/smr/vendor/compiled.php on line 1817 , defined in /home/vagrant/code/smr/app/exceptions/handler.php:25 stack trace: #0 /home/vagrant/code/smr/vendor/compiled.php(1817): app\exceptions\handler->report(object(error)) #1 [internal function]: illuminate\foundation\bootstrap\handleexceptions->handleexception(object(error)) #2 {main} thrown here call in controller. use logospinner; public function logospinner() { $data = logospinner::get(); } and here model <?php namespace app; class logospinner extends eloquent { protected $table = 'logospinner'; protected $guarded = array("id"); protected $hidden = array(); } i

Different behaviour using php selenium on localhost or Jenkins -

i got strange case of using php selenium once use on localmachine , once pushed jenkins. so have function public function tablecontent() { $data = array(); $rows = tablebase::getalltablerowsbyid($this->getwebdriver(), self::table); foreach ($rows $row) { //the problematic part $row->getlocationonscreenoncescrolledintoview(); array_push($data, $this->getrowcellvaluesbyheadername($row)); } return $data; } this function goes trough whole table , each row collects data. returns array of arrays of data. problem getlocationonscreenoncescrolledintoview works ok , table scroller moved once run code on local machine. when commit code jenkins , watch test on remote machine somehow getlocationonscreenoncescrolledintoview method not working. scroller isn't moved. if view isn't scrolled data not collected , test fails. there limitations regarding getlocationonscreenoncescrolledintoview on jenkins? how come localhost test w

unit testing - angular 2 - jasmine- test methods in typescript -

i have written simple mock services test method(changed()) in typescript file (edituser.ts) i getting following error when try execute edituser.spec.ts typeerror: cannot read property 'changed' of undefined @ object.eval (http://localhost:3000/app/tracker/edituseradmin/edituser.spec.js:94:12) @ attemptsync (http://localhost:3000/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:1886:24) @ queuerunner.run (http://localhost:3000/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:1874:9) @ http://localhost:3000/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:1898:16 @ http://localhost:3000/node_modules/jasmine-core/lib/jasmine-core/jasmine.js:1842:9 @ http://localhost:3000/node_modules/angular2/bundles/testing.dev.js:2116:15 @ zonedelegate.invoke (http://localhost:3000/node_modules/angular2/bundles/angular2-polyfills.js:390:29) @ zone.run (http://localhost:3000/node_modules/angular2/bundles/angular2-polyfills.js:283:44) @

file permissions - How to securely set the group ownership of a unix domain socket? -

i want create unix domain socket restricted particular group. i'd ideally (ignoring error checking) like: // set "address" (ie filesystem path) struct sockaddr_un addr; memset(&addr, 0, sizeof(addr)); addr.sun_family = af_unix; strcpy(addr.sun_path, "./my.sock"); int fd = socket(af_unix, sock_dgram, 0); // create socket // set group owner , permissions fchmod(fd, 0770); // seems succeed fchown(fd, -1, wanted_group_id); // silently fails // create filesystem entry bind(fd, (struct sockaddr *)&addr, sizeof(addr)); however, fchown on socket has no effect , seems chown afterwards way set group. want avoid having socket temporarily accessible processes shouldn't permitted access it. the best idea have is: int fd = socket(...); fchmod(fd, 0700); // remove group permissions bind(fd, ...); // create fs entry chown("./my.sock", -1, wanted_group_id); // set correct group owner fchmod(fd, 0770); // , restore group permission

c# - Why can I not delete a Registry key, even though it is present? -

Image
i trying delete registry key , subkeys. method takes registry key string argument, , locates , deletes it. i testing key: hkey_local_machine\software\wow6432node\microsoft\windows\currentversion\uninstall\installshield_{694affc3-93d4-4049-af26-78739488eb4d} and method have written: static void removeregkey(string registrykey) { // split string hive, middle section, , subkey name string[] regkeyparts = registrykey.split('\\'); // hive string hive = regkeyparts[0].toupper(); // name string name = regkeyparts[regkeyparts.length - 1]; // middle bit string keypath = ""; (int = 1; < regkeyparts.length - 1; i++) { keypath = keypath + regkeyparts[i] + "\\"; } // create registry key registrykey regkey = null; switch (hive) { case ("hkey_local_machine"): regkey = registry.localmachine; break; case ("hkey_current_config"): regkey = registry.currentconfig; break;

Jquery input get value of self and sibling inputs on event -

i trying value of input (radio button) when clicked on , value of siblings. using jquery can value of siblings code below, can't think of how include value of selected element itself. options = $(button).siblings('input:checkbox:checked').map(function () { return this.value; }).get(); you can traverse parent element , find checked elements in ensure not considering current checkbox when unchecked: $(button).parent().find('input:checkbox:checked').map(function () { return this.value; }).get();

css - Why div not stacked immediately after previous div ? (not margin/padding issue) -

i have positioned <div id="title"> 50px above original position, height of div being 70px. cant understand why <div id="page1"> not beginning right after title div, beginning after original height, 70px. how can correct it? * { margin: 0; padding: 0; } #title { position: relative; top: -50px; width: 100%; height: 70px; background-color: blue; } #page1 { background-color: lightgreen; text-align: center; position: relative; z-index: 0; width: 100%; height: 500px; } #page1 img { position: absolute; top: 200px; left: 50px; width: 200px; } #page1 h1 { padding-top: 100px; } #page2 { background-color: red; position: relative; z-index: 1; width: 100%; height:800px; } <html> <head> <link rel = "stylesheet" href = "style.css"> </head> <body> <div id = "title"></div> <div id = "page1&quo

elasticsearch - Find nested documents by id -

elasticsearch has ids query find documents id. tried use in nested query: { "query": { "nested": { "path": "nestedfield", "query": {"ids":{ "values": ["nesteddocumentid" ] }}, "inner_hits" : {} } } } but query looks @ parent document id, not @ nested. can use ids query finding nested documents ids? the id of nested documents automatically created , cannot control that. the solution index id in nested document itslef regular field , terms filter instead of ids .

c# - Office Open for excel set single decimla place for percentage -

i using openxml creating excel document , want display percentage single decimal place percentage format "85.5%". not able find proper solution this. following function create stylesheet. private stylesheet generatestylesheet(numberingformat nf2decimal) { return new stylesheet( new fonts( new font(new fontsize() { val = 11 }, new color() { rgb = new hexbinaryvalue() { value = "000000" } }, new fontname() { val = "calibri" }), new font(new bold(), new fontsize() { val = 12 }, new color() { rgb = new hexbinaryvalue() { value = "000000" } }, new fontname() { val = "calibri" }), new font(new bold(), new fontsize() { val = 11 }, new color() { rgb = new hexbinaryvalue() { value = "fccb02" } }, new fontname() { val = "calibri" }), new font(new bold(), new fontsize() { val = 11 }, new color() { rgb = new hexbinaryvalue() { value

user interface - Powershell GUI - Classic Theme instead of Windows Aero -

when creating gui-programm in powershell ise , it's windows aero themed. http://i.stack.imgur.com/lizle.png running same programm desktop , it's theme windows classic . http://i.stack.imgur.com/fkp5s.png i want able use aero theme when running program .bat. doing wrong?

c++ - Is it possible to make `=` prefer assignment-from-conversion over (deleted) copy-assignment? -

i've found few threads heavily imply can't done, none use same combination of operators , conditions, i'd ask more specifically. means it's quick , easy answer someone... 1 way or another! consider example proxy class, made manage value within larger block of storage - in oversimplified representative example: class someproxything { std::uint32_t storage; public: operator std::uint16_t() const { return storage & 0x0000ffff; } someproxything &operator=(std::uint16_t const value) { storage &= 0xffff0000; storage |= value; } }; i want all assignments work via user-defined operator s. user should able pass in or out 'exposed' type, in case std::uint16_t . might using various proxy class types , want apply of them. ideally, combination of types, type someproxy = anotherproxy , let compiler rest. but when left- , right-hand-side of assignment have same or inheritance-related types, default

c# - What is the appropriate way to manage and name forms in a solution? -

Image
i beginner visual studio 2015 , c# , looking general advice not not find anywhere else, please bear me. let's create new windows forms application, in solution explorer can see form1.cs has been added tree, , child form1.designer.cs , form1 . now want add form right clicking windowsformapplication1 , add > new item... the solution explorer looks this: for first c# project recreating notepad should not overly difficult, allow me familiarize myself language , syntax etc. i have added second form project go to line number form, shown edit menu in notepad. suppose want give form1 , form2 more meaningful names correct way this? from properties inspector named form1 frmmain , form2 frmgoto noticed in solution explorer parent names still form1.cs , form2.cs : so right clicked each parent node , renamed them so: my question right or wrong approach? feel going have naming conflicts maybe. to test tried showing frmgoto form so: form frmgoto

php - Wordpress get category parents as category array -

if @ documentation get_category_parents() you'll see resturns string names of categories seperated seperator. now, don't know if me seems extremely stupid. i'm expecting array of actual category objects. can't have guess.. what best way parent categories in format want them? try 1 correct result if want parent category of post try this $parent_cat_array = get_post_ancestors( $post ); //$post object or can pass post id if want parent category id try one... // determine topmost parent of term function get_term_top_most_parent($term_id, $taxonomy) { // start current term $parent = get_term_by('id', $term_id, $taxonomy); // climb hierarchy until reach term parent = '0' while ($parent->parent != '0') { $term_id = $parent->parent; $parent = get_term_by('id', $term_id, $taxonomy); } return $parent; } function place in functions.php call functi

How do I install keras package in IronPython/VS2010? -

i error when trying install keras: installing 'keras' unhandled exception: traceback (most recent call last): file "c:\program files (x86)\ironpython 2.7\lib\runpy.py", line 170, in run_module file "c:\program files (x86)\ironpython 2.7\lib\runpy.py", line 101, in _get_module_details file "c:\program files (x86)\ironpython 2.7\lib\pkgutil.py", line 456, in get_loader file "c:\program files (x86)\ironpython 2.7\lib\pkgutil.py", line 466, in find_loader file "c:\program files (x86)\ironpython 2.7\lib\pkgutil.py", line 422, in iter_importers file "c:\program files (x86)\ironpython 2.7\lib\site-packages\pip__init__.py", line 13, in file "c:\program files (x86)\ironpython 2.7\lib\site-packages\pip\exceptions.py", line 6, in file "c:\program files (x86)\ironpython 2.7\lib\site-packages\pip_vendor\six.py", line 701, in file "c:\program files (x86)\ironpyt

java - IntelliJ IDEA doesn't compile -

after downloading , installing intellij idea finnaly able start project. decided go hello world template, when try compile never does. can let 1 hour , still loading. thank you! in image can see says compiles. doesn't..., it's loading never finishes compiling: intellij idea never stops compiling

javascript - AngularJS | How to combine ng-dblclick and ng-routing on the same element? -

in app have index.html there ng-view directive. inside directive add information main.html defalut - it's table of names , links. clicking link content of ng-view updates , information particular link link.html appears. please, see index.html : <!doctype html> <html lang="en" ng-app="app"> <head> ... </head> <body ng-controller="myctrl"> <h1>angularjs</h1> <ng-view></ng-view> </body> </html> my main.js : angular .module('app', ['ngroute']) .config(function($routeprovider) { $routeprovider .when('/', { templateurl: 'partials/main.html' }) .when('/link/:id', { templateurl: 'partials/circle.html', controller: 'linkctrl' }) .otherwise({ redirectto: '/' })

java - Weblogic 10.3.6 Domain Wizard Could not create the JVM -

i try run wls domain wizard create new domain weblogic installed in virtual environment citrix 12.3.400.3. requires run /middleware/wlserver_10.3/common/bin/config.exe error arises immediately: error: not create java virtual machine error: fatal exception has occurred. program exit. i have installed there: java se development kit 8 update 51 (64-bit) - c:\program files\java\jdk1.8.0_51 java(tm) 6 update 27 (64-bit) - c:\program files\java\jre6 java(tm) 7 update 3 (64-bit) - c:\program files\java\jre7 java(tm) se development kit 7 update 3 (64-bit) - c:\program files\java\jdk1.7.0_3 env var: java_home=c:\program files\java\jre1.8.0_51 ►java -version java version "1.6.0_45" java(tm) se runtime environment (build 1.6.0_45-b06) oracle jrockit(r) (build r28.2.7-7-155314-1.6.0_45-20130329-0646-windows-x86_64, compiled mode) so, there hope resolve problem? the answer here: https://community.oracle.com/message/12743335# if multiple jdk installed on compute

raster - xy rotated when using gdal.ReadAsArray in Python 2.7 -

i used gdal module in python read dem raster. when under gdal dem x , y sizes correct (42689, 35622). used readasarray function, shape of dem rotated (35622, 42689). there way fix or @ least identify how dem has been rotated? in [54]: t1.rasterysize out[54]: 35622 in [55]: t1.rasterxsize out[55]: 42689 ta = t1.readasarray in [64]: ta.shape out[64]: (35622l, 42689l) numpy has "y" axis axis 0 (the first axis), , "x" axis axis "1" (the second axis), 0-based index. when ask ta[3,1] , coordinate x=1, y=3 origin (0,0) @ upper left. there has been no rotation, it's matter of convention. you can plot dem using matplotlib or save new raster using gdal , see retained original orientation.

Appcelerator - multiple apps same codebase -

i create ios app using appcelerator, , create multiple forks, each fork having few differences, colors, logos, etc. config file can sort out differences, , different results come api. but can have same codebase multiple apps? in native android, you'd use gradle , product flavours? options there in appcelerator? down line, these apps need updated. ideally, "core" app should updated , forks pickup differences. how done? you can have 1 app multiple alloy themes, , set theme want before build version of app, set theme, add line "theme":"yourtheme3" @ "global" property of app/config.json your themes placed in e.g. app/themes/yourtheme7 each theme have config.json set specific properties, can have specific assets, controllers, views, etc... you can value of property of config.json this: alloy.cfg.yourproperty there things have manually: change defaulticon ios apps change id or name of app (tiapp.xml) or use this: tich

jsf 2 - JSF returns blank/unparsed page with plain/raw XHTML/XML/EL source instead of rendered HTML output -

i have facelets files below. webcontent |-- index.xhtml |-- register.xhtml |-- templates | |--userform.xhtml | `--banner.xhtml : both pages using templates /templates directory. /index.xhtml opens fine in browser. generated html output. have link in /index.xhtml file /register.xhtml file. however, /register.xhtml not getting parsed , returns plain xhtml / raw xml instead of generated html output. when rightclick page in browser , view page source , still see xhtml source code instead of generated html output. looks template not getting applied. however, when open /register.xhtml /faces/register.xhtml in browser's address bar, displays correctly. how caused , how can solve it? there 3 main causes. facesservlet not invoked. xml namespace uris missing or wrong. multiple jsf implemenations have been loaded. 1. make sure url matches facesservlet mapping the url of link (the url see in browser's address bar) has match <url-patte

How to make login code in java -

i'm trying make login code in java there's problem in code. if enter correct data or wrong 1 still can't enter loop go next frame. full code it's have exception it's not problem . connection conn = null ; try { conn = drivermanager.getconnection("jdbc:mysql://localhost:3306/db?"+ "user=name&password=pass&characterencoding=utf8"); string query = ("select user_name user user_name = '" + txtusername + "' , password = '" + passwordfield.getpassword().tostring() + "' ; "); preparedstatement stmt = conn.preparestatement(query); resultset rs = stmt.executequery(); while (rs.wasnull()) { system.out.println("true"); frame2.setvisible(true); frame.setvisible(false); break; } } catch (sqlexception ee) { joptionpane.showmessagedialog(frame2, "wrong inf ... please try again &q

javascript - jquery conditional form submit -

i trying update user profile. after user inserts address , submits converts latitude , longitude. created conditional statement: if geocoderstatus ok change geolocationok = 1 else 0. when 1 run update function, latitude , longitude not passed formdata. on second update click added. suggestion how can include latitude , longitude in formdata? click update $(document).on("click", "#updateprofile", function (e) { function geocodeaddress(geocoder, resultsmap) { var address = document.getelementbyid('address').value; geocoder.geocode({'address': address}, function(results, status) { if (status === google.maps.geocoderstatus.ok) { var latitude = results[0].geometry.location.lat(); var longitude = results[0].geometry.location.lng(); console.log(latitude); console.log(longitude);

sproutcore orderBy other controller -

in 1 of listviews display besides several 'office' properties 'distance' property belonging other controller , orderby working for/with 'office' model properties. background: have input field postalcode used in query distances between postalcode , of our office postalcodes. obtained distances in second controller. please advice how distance orderby working. the easiest add computed property model retrieves distance controller in have information. in order orderby work, needs seem array controller / list view combination property want sort on property of object displayed.

github - Git corrupt : error object file is empty -

i had performed local changes repository , committed them local repo. while fetching code repository system power got lost. result, git repo got corrupted. when i'm checking out commit id (local) shown in git reflog shows error: object file ./objects/xx/yyyyyyyyyyyy empty. fatal: loose object xxyyyyyyyyyyyy corrupt. when doing git status shows files corresponding object files deleted. result i'm not able git hash-object -w object-path. since local commit, can't replace .git folder remote server local repo. is there way using can restore commit , avoid redoing it?

java - File split based on content -

i have huge log file, has in multiple xml files, want retrieve each of xmls , use further operation.the xml having same opening , closing string ,i trying split based on this. how should this? org.mule.config.spring.muleartifactcontext@4044fb95: startup date [wed jun 29 04:37:43 edt 2016]; root of context hierarchy info 2016-06-29 04:37:46,560 [main] org.springframework.context.support.propertysourcesplaceholderconfigurer: loading properties file class path resource [workday-mule-presclub-bonusbase.properties] info 2016-06-29 04:37:46,560 [main] org.springframework.context.support.propertysourcesplaceholderconfigurer: loading properties file class path resource [workday-mule-presclub-bonusbase-dev.properties] info 2016-06-29 04:37:46,560 [main] org.springframework.context.support.propertysourcesplaceholderconfigurer: loading properties file class path resource [env/workday-mule-presclub-bonusbase-jz.properties] info 2016-06-29 04:37:46,560 [main] org.springframework.context.s