Commit graph

82 commits

Author SHA1 Message Date
df1523db3e Fix: hook registering should be hook-type agnostic 2016-07-16 11:39:34 +02:00
c03fb00c20 Replace error boxing and wrapping by helper generated with libimagerror 2016-06-27 18:23:54 +02:00
bfa6f593b6 Fix: Re-writing content of String in edit_in_tmpfile() 2016-06-07 14:25:06 +02:00
180dfbf0b1 Fix: Pass the confguration path as parameter for Configuration::new()
If there is none, fall back to the RTP.
2016-05-28 23:11:10 +02:00
d50f8b3d0d Fix: Test the RTP itself as well
This fixes the problem that the user sometimes passes the configuration
via the commandline. In this case, the "rtp" variable itself is the
configuration file path. With this fix applied, we check this value
before generating the variants and trying them.
2016-05-28 23:03:06 +02:00
e3db21b009 Use IntoError trait for less ugly code 2016-05-27 10:27:06 +02:00
70b6a4f587 Replace configuration error code with macro generator 2016-05-27 10:21:56 +02:00
9a92f9091f Add env_logger as fallback if IMAG_LOG_ENV is present 2016-05-24 16:43:04 +02:00
4066ae4048 Add dep: env_logger = 0.3 2016-05-24 16:42:32 +02:00
b4b3a0ede8 Only warn if there is no config file 2016-05-23 15:12:57 +02:00
1dbfb7cf28 libimagrt: Replace error module imports with macro helper 2016-05-19 18:22:03 +02:00
f88e3e629b Add runtime setup helper function 2016-05-18 22:33:01 +02:00
ee32a85ff3 libimagrt: Change dependency from libimagutil -> libimagerror 2016-05-18 18:31:54 +02:00
f27b114f85 libimagrt: Replace error code with code generator macro 2016-05-17 14:01:58 +02:00
bd6c8ff3ff Merge pull request #412 from matthiasbeyer/libimagrt/color-log-output
Libimagrt/color log output
2016-05-17 00:23:12 +02:00
376a23b8ce Color log output
Color as follows:

    * Debug output -> Cyan
    * Warning, errors -> Red, with the type (WARN; ERROR) red blinking
    * All other output yellow.
2016-05-15 17:38:02 +02:00
344296487d Add dependency: ansi_term = 0.7 2016-05-15 17:37:56 +02:00
7b855f82f3 Remove unwrap() calling by matching 2016-05-15 14:00:24 +02:00
Andre Bogus
981707c9c9 more style adaptations
again following clippy
2016-05-13 22:27:53 +02:00
987605322f Add missing "return None" in file opening error case 2016-05-09 17:12:55 +02:00
e0876bb751 Make libimagrt::runtime::Runtime derive Debug 2016-04-20 21:46:02 +02:00
3631817827 libimagrt: Replace .err().unwrap() with .unwrap_err() 2016-04-20 21:45:58 +02:00
52134e6095 Rename: kind() to err_type() 2016-04-19 19:47:23 +02:00
3bb4528060 Enable lints 2016-04-17 20:48:22 +02:00
bd4c89af3b Use unused results 2016-04-17 20:48:17 +02:00
4641236c82 Annotate function with allow(dead_code) 2016-04-17 20:48:03 +02:00
54dd7c0d7e Remove unused enum variant 2016-04-17 20:47:49 +02:00
3e9bf44127 Merge pull request #322 from matthiasbeyer/libimagrt/debug-log-line-and-file
logger: Print file and line on debug printing
2016-04-06 16:58:22 +02:00
b305b3c693 Implement Edit for String 2016-04-06 14:40:54 +02:00
b30cde474d Merge pull request #319 from matthiasbeyer/libimagrt/std-hook-register-error-only-debugoutput
Libimagrt/std hook register error only debugoutput
2016-04-06 11:14:44 +02:00
f28bfadf8d logger: Print file and line on debug printing 2016-04-05 17:53:09 +02:00
9a094fcd94 Partially revert 7f1a671
Removed the logger initialization, which was not caught by review
somehow.

This patch re-adds the appropriate lines.
2016-04-05 17:48:21 +02:00
4f391d0e04 Spit out the traceback for hook registration errors only in debug mode
This patch is added because this error occours only if there is no
configuration file with the appropriate settings available.

There will still be a warning about hook registration failed, but the
traceback will only be visitible in `--debug` mode.
2016-04-05 16:50:17 +02:00
ee61d079bd Merge pull request #295 from matthiasbeyer/libimagrt/config-for-everyone
Libimagrt/config for everyone
2016-03-26 21:29:40 +01:00
1bcc05a855 Add Runtime::config() 2016-03-26 20:48:32 +01:00
86929c819c impl Deref for Configuration 2016-03-26 20:48:28 +01:00
7f1a671e4d Add debug hook 2016-03-26 18:20:12 +01:00
64e0841a8f Merge pull request #292 from matthiasbeyer/libimagrt/create-logger-on-runtime-setup
Move logger initialization to earliest possible point
2016-03-26 16:23:59 +01:00
d6aa42bd60 Move logger initialization to earliest possible point 2016-03-26 15:29:24 +01:00
c5d5c17208 Enhance error printing on config file parsing errors 2016-03-26 15:28:25 +01:00
34ce278af3 Merge pull request #283 from matthiasbeyer/libimagrt/warning-to-error
Libimagrt/warning to error
2016-03-26 13:56:36 +01:00
b2329c323a Merge pull request #275 from matthiasbeyer/libimagrt/config-file-search-filter-bug
Fix Config-file searching filter bug
2016-03-26 13:55:02 +01:00
c53cc56d0c Enable warning-to-error deny!() 2016-03-25 16:23:51 +01:00
87fa9bab13 Make result used 2016-03-25 16:19:57 +01:00
cdad750e02 Make result used by try!()ing 2016-03-25 16:19:21 +01:00
d523c432c3 Use unused result 2016-03-25 16:01:42 +01:00
876a5ad78c Remove unneeded keyword "mut" 2016-03-25 16:01:11 +01:00
3e760d6dff Remove unused import 2016-03-25 15:59:18 +01:00
97c0d4c057 Fix Config-file searching filter bug 2016-03-25 15:15:22 +01:00
94e56108e8 Fix path building bug 2016-03-25 15:15:13 +01:00