* [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn`
@ 2024-11-05 11:21 ioquatix (Samuel Williams) via ruby-core
2024-11-05 12:26 ` [ruby-core:119727] " zverok (Victor Shepelev) via ruby-core
` (12 more replies)
0 siblings, 13 replies; 14+ messages in thread
From: ioquatix (Samuel Williams) via ruby-core @ 2024-11-05 11:21 UTC (permalink / raw)
To: ruby-core; +Cc: ioquatix (Samuel Williams)
Issue #20864 has been reported by ioquatix (Samuel Williams).
----------------------------------------
Feature #20864: Support `error:` keyword to `Kernel#warn`
https://bugs.ruby-lang.org/issues/20864
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
`Kernel#warn` is extremely useful.
It is possible to include some details about the current caller using `uplevel` for the current call stack. But it is not possible to include details about errors.
I'd like to propose another extension to log errors.
```ruby
begin
# some work
rescue => error
warn "An error occurred!", error: error
end
```
Such a feature would allow us to log errors using a standard interface.
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119727] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn`
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
@ 2024-11-05 12:26 ` zverok (Victor Shepelev) via ruby-core
2024-11-05 13:47 ` [ruby-core:119729] " Eregon (Benoit Daloze) via ruby-core
` (11 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: zverok (Victor Shepelev) via ruby-core @ 2024-11-05 12:26 UTC (permalink / raw)
To: ruby-core; +Cc: zverok (Victor Shepelev)
Issue #20864 has been updated by zverok (Victor Shepelev).
I wonder why `error:` in particular, and not just `warn(text, **any_structured_metadata)`?..
----------------------------------------
Feature #20864: Support `error:` keyword to `Kernel#warn`
https://bugs.ruby-lang.org/issues/20864#change-110394
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
`Kernel#warn` is extremely useful.
It is possible to include some details about the current caller using `uplevel` for the current call stack. But it is not possible to include details about errors.
I'd like to propose another extension to log errors.
```ruby
begin
# some work
rescue => error
warn "An error occurred!", error: error
end
```
Such a feature would allow us to log errors using a standard interface.
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119729] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn`
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
2024-11-05 12:26 ` [ruby-core:119727] " zverok (Victor Shepelev) via ruby-core
@ 2024-11-05 13:47 ` Eregon (Benoit Daloze) via ruby-core
2024-11-05 15:04 ` [ruby-core:119734] " ioquatix (Samuel Williams) via ruby-core
` (10 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Eregon (Benoit Daloze) via ruby-core @ 2024-11-05 13:47 UTC (permalink / raw)
To: ruby-core; +Cc: Eregon (Benoit Daloze)
Issue #20864 has been updated by Eregon (Benoit Daloze).
Why not include the error directly in the warning message?
It seems that would just work better with the whole `Warning.warn` system and existing handling of warnings.
----------------------------------------
Feature #20864: Support `error:` keyword to `Kernel#warn`
https://bugs.ruby-lang.org/issues/20864#change-110396
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
`Kernel#warn` is extremely useful.
It is possible to include some details about the current caller using `uplevel` for the current call stack. But it is not possible to include details about errors.
I'd like to propose another extension to log errors.
```ruby
begin
# some work
rescue => error
warn "An error occurred!", error: error
end
```
Such a feature would allow us to log errors using a standard interface.
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119734] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn`
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
2024-11-05 12:26 ` [ruby-core:119727] " zverok (Victor Shepelev) via ruby-core
2024-11-05 13:47 ` [ruby-core:119729] " Eregon (Benoit Daloze) via ruby-core
@ 2024-11-05 15:04 ` ioquatix (Samuel Williams) via ruby-core
2024-11-05 16:14 ` [ruby-core:119742] " Dan0042 (Daniel DeLorme) via ruby-core
` (9 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: ioquatix (Samuel Williams) via ruby-core @ 2024-11-05 15:04 UTC (permalink / raw)
To: ruby-core; +Cc: ioquatix (Samuel Williams)
Issue #20864 has been updated by ioquatix (Samuel Williams).
> I wonder why error: in particular, and not just warn(text, **any_structured_metadata)?..
I'd be okay with that, in fact I was thinking of making that proposal but I wasn't sure it would be accepted if it was too general.
> Why not include the error directly in the warning message?
Good question! Unfortunately, I found that the formatting behaviour of `Warning.warn` is a bit problematic. The first argument to `Warning.warn` is a string concatenation of all arguments passed to `Kernel#warn`. Depending on the log output, I want to include the details of the error in a JSON format for structured logging. In order to do that, I need the original objects passed to `warn`. This includes adding trace metadata which may not be known about until later on in the output handling. However, I don't want to do that at the point of the call, as we don't know the output format at that point... it could be JSON, MessagePack, plain text, or some other format.
It may be the case that `warn` was not designed to be used that way, and I'm okay if that's the case. But I think this is a useful and generic extension point for logging. If we can allow extra meta-data (that can be ignored by default) to go via options, it significantly increases the usefulness of this interface - we can pick up those options in `Warning.warn` and use those to control the output accordingly.
----------------------------------------
Feature #20864: Support `error:` keyword to `Kernel#warn`
https://bugs.ruby-lang.org/issues/20864#change-110400
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
`Kernel#warn` is extremely useful.
It is possible to include some details about the current caller using `uplevel` for the current call stack. But it is not possible to include details about errors.
I'd like to propose another extension to log errors.
```ruby
begin
# some work
rescue => error
warn "An error occurred!", error: error
end
```
Such a feature would allow us to log errors using a standard interface.
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119742] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn`
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (2 preceding siblings ...)
2024-11-05 15:04 ` [ruby-core:119734] " ioquatix (Samuel Williams) via ruby-core
@ 2024-11-05 16:14 ` Dan0042 (Daniel DeLorme) via ruby-core
2024-11-05 22:05 ` [ruby-core:119754] " ioquatix (Samuel Williams) via ruby-core
` (8 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Dan0042 (Daniel DeLorme) via ruby-core @ 2024-11-05 16:14 UTC (permalink / raw)
To: ruby-core; +Cc: Dan0042 (Daniel DeLorme)
Issue #20864 has been updated by Dan0042 (Daniel DeLorme).
I think I agree with the general idea but I'm not sure if the proposal is what I think it is. It's a bit thin about what happens with this "error" keyword exactly. So is the idea that this meta-information would be forwarded to another method to decide what to do with it? Are we talking about extending `Warning.warn` to work like: `warn(*args, **opts)` -> `Warning.warn(formatted_str, **opts)`
----------------------------------------
Feature #20864: Support `error:` keyword to `Kernel#warn`
https://bugs.ruby-lang.org/issues/20864#change-110406
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
`Kernel#warn` is extremely useful.
It is possible to include some details about the current caller using `uplevel` for the current call stack. But it is not possible to include details about errors.
I'd like to propose another extension to log errors.
```ruby
begin
# some work
rescue => error
warn "An error occurred!", error: error
end
```
Such a feature would allow us to log errors using a standard interface.
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119754] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn`
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (3 preceding siblings ...)
2024-11-05 16:14 ` [ruby-core:119742] " Dan0042 (Daniel DeLorme) via ruby-core
@ 2024-11-05 22:05 ` ioquatix (Samuel Williams) via ruby-core
2024-11-06 22:26 ` [ruby-core:119785] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn` ioquatix (Samuel Williams) via ruby-core
` (7 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: ioquatix (Samuel Williams) via ruby-core @ 2024-11-05 22:05 UTC (permalink / raw)
To: ruby-core; +Cc: ioquatix (Samuel Williams)
Issue #20864 has been updated by ioquatix (Samuel Williams).
Thanks for your feedback. The proposal is deliberately thin - as I said, I don't know exactly how we should adjust the internal interface to handle this (actually I don't have a strong opinion about it). The main point is, to allow for an additional keyword argument. I think `Warning.warn` should probably receive that keyword argument, and maybe print it using `error.full_message` or something similar. I don't think it should be part of `formatted_str` but I think the default implementation could print it separately?
----------------------------------------
Feature #20864: Support `error:` keyword to `Kernel#warn`
https://bugs.ruby-lang.org/issues/20864#change-110418
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
`Kernel#warn` is extremely useful.
It is possible to include some details about the current caller using `uplevel` for the current call stack. But it is not possible to include details about errors.
I'd like to propose another extension to log errors.
```ruby
begin
# some work
rescue => error
warn "An error occurred!", error: error
end
```
Such a feature would allow us to log errors using a standard interface.
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119785] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (4 preceding siblings ...)
2024-11-05 22:05 ` [ruby-core:119754] " ioquatix (Samuel Williams) via ruby-core
@ 2024-11-06 22:26 ` ioquatix (Samuel Williams) via ruby-core
2024-11-06 23:38 ` [ruby-core:119786] " jeremyevans0 (Jeremy Evans) via ruby-core
` (6 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: ioquatix (Samuel Williams) via ruby-core @ 2024-11-06 22:26 UTC (permalink / raw)
To: ruby-core; +Cc: ioquatix (Samuel Williams)
Issue #20864 has been updated by ioquatix (Samuel Williams).
According to the discussion I've updated the proposal.
----------------------------------------
Feature #20864: Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
https://bugs.ruby-lang.org/issues/20864#change-110459
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
## Background
`Kernel#warn` is extremely useful, especially because there is a mechanism for loggers to redirect warnings using the `Warning` module. Currently, it is possible to include some details about the current caller using `uplevel` for the current call stack. But it is not possible to include details about exceptions.
```ruby
begin
...
rescue => error
warn "Something went wrong!", exception: error
end
```
Because of this, trying to emit detailed structured logs from `warn` is tricky.
## Proposal
I'd like to propose another extension to log errors. We would allow `warn(..., **options)` to accept all options, and forward them all to `Warning.warn`.
This would allow us to add more details to warnings and emit structured logs using `Warning.warn`.
A simple example of the proposed interface:
```ruby
module Kernel
def warn(*arguments, uplevel: ..., **options)
# Existing processing of arguments -> message
::Warning.warn(message, **options)
end
end
```
Current behaviour rejects any unknown options:
```
warn("Oops", exception: error)
# => <internal:warning>:50:in `warn': unknown keyword: :exception (ArgumentError)
```
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119786] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (5 preceding siblings ...)
2024-11-06 22:26 ` [ruby-core:119785] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn` ioquatix (Samuel Williams) via ruby-core
@ 2024-11-06 23:38 ` jeremyevans0 (Jeremy Evans) via ruby-core
2024-11-06 23:53 ` [ruby-core:119787] " ioquatix (Samuel Williams) via ruby-core
` (5 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: jeremyevans0 (Jeremy Evans) via ruby-core @ 2024-11-06 23:38 UTC (permalink / raw)
To: ruby-core; +Cc: jeremyevans0 (Jeremy Evans)
Issue #20864 has been updated by jeremyevans0 (Jeremy Evans).
@ioquatix asked for my feedback on this. I'm against `Warning.warn` taking `**opts` for structured logging. We have an existing `category` keyword option that it would conflict with, and it would prevent the backwards compatible addition of other keyword arguments. If we want to support structured logging in `Warning.warn`, we should have a keyword argument specifically for the structured logging information. We should also have a description of how the structured logging information should be handled by default.
----------------------------------------
Feature #20864: Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
https://bugs.ruby-lang.org/issues/20864#change-110461
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
## Background
Structured logging is a practice that organizes log data in a consistent, easily parseable format. Unlike traditional unstructured logs, which often consist of plain text entries, structured logs format information in key-value pairs or structured data formats such as JSON. This allows for better automation, searchability, and analysis of log data.
In Ruby, `Kernel#warn` is extremely useful, especially because there is a mechanism for loggers to redirect warnings using the `Warning` module. However, it is difficult to generate structured logs with `Kernel#warn` as all the positional arguments are converted to a single string, and arbitrary keyword options are rejected.
As a consequence, code like this is not possible:
```ruby
begin
...
rescue => error
warn "Something went wrong!", exception: error
end
```
It is very desirable to have a standard interface in Ruby for emitting structured warnings.
## Proposal
I'd like to extend the current implementation to allow all options to be forwarded to `Warning.warn`. This would allow us to add more details to warnings and emit structured logs using `Warning.warn`.
A simple example of the proposed interface:
```ruby
module Kernel
def warn(*arguments, uplevel: ..., **options)
# Existing processing of arguments -> message
::Warning.warn(message, **options)
end
end
```
Current behaviour rejects any unknown options:
```
warn("Oops", exception: error)
# => <internal:warning>:50:in `warn': unknown keyword: :exception (ArgumentError)
```
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119787] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (6 preceding siblings ...)
2024-11-06 23:38 ` [ruby-core:119786] " jeremyevans0 (Jeremy Evans) via ruby-core
@ 2024-11-06 23:53 ` ioquatix (Samuel Williams) via ruby-core
2024-11-07 1:26 ` [ruby-core:119788] " ioquatix (Samuel Williams) via ruby-core
` (4 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: ioquatix (Samuel Williams) via ruby-core @ 2024-11-06 23:53 UTC (permalink / raw)
To: ruby-core; +Cc: ioquatix (Samuel Williams)
Issue #20864 has been updated by ioquatix (Samuel Williams).
Description updated
> We should also have a description of how the structured logging information should be handled by default.
Regarding the default behaviour, I propose no changes.
As an alternative, I'd also be open to dumping it, e.g. using `pp`.
> We have an existing category keyword option that it would conflict with, and it would prevent the backwards compatible addition of other keyword arguments.
I don't completely agree with the former part of this statement, but the latter part is fair. It's a toss up for usability and whether we think that we will add more keywords in the future.
e.g.
```ruby
# Jeremy's preference (some top level keyword argument):
warn "something went wrong", extra: {exception:}
# vs the current proposal:
warn "something went wrong", exception:
```
I slightly lean towards the usability aspect for the consumer of the API, but I understand Jeremy's concern regarding the long term compatibility of the internal interface `Warning.warn`.
----------------------------------------
Feature #20864: Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
https://bugs.ruby-lang.org/issues/20864#change-110462
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
## Background
Structured logging is a practice that organizes log data in a consistent, easily parseable format. Unlike traditional unstructured logs, which often consist of plain text entries, structured logs format information in key-value pairs or structured data formats such as JSON. This allows for better automation, searchability, and analysis of log data.
In Ruby, `Kernel#warn` is extremely useful, especially because there is a mechanism for loggers to redirect warnings using the `Warning` module. However, it is difficult to generate structured logs with `Kernel#warn` as all the positional arguments are converted to a single string, and arbitrary keyword options are rejected.
As a consequence, code like this is not possible:
```ruby
begin
...
rescue => error
warn "Something went wrong!", exception: error
end
```
It is very desirable to have a standard interface in Ruby for emitting structured warnings.
## Proposal
I'd like to extend the current implementation to allow all options to be forwarded to `Warning.warn`. This would allow us to add more details to warnings and emit structured logs using `Warning.warn`.
A simple example of the proposed interface:
```ruby
module Kernel
def warn(*arguments, uplevel: ..., **options)
# Existing processing of arguments -> message
::Warning.warn(message, **options)
end
end
```
Current behaviour rejects any unknown options:
```
warn("Oops", exception: error)
# => <internal:warning>:50:in `warn': unknown keyword: :exception (ArgumentError)
```
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
Regarding the default behaviour, I propose no changes.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119788] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (7 preceding siblings ...)
2024-11-06 23:53 ` [ruby-core:119787] " ioquatix (Samuel Williams) via ruby-core
@ 2024-11-07 1:26 ` ioquatix (Samuel Williams) via ruby-core
2024-11-07 5:56 ` [ruby-core:119790] " ko1 (Koichi Sasada) via ruby-core
` (3 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: ioquatix (Samuel Williams) via ruby-core @ 2024-11-07 1:26 UTC (permalink / raw)
To: ruby-core; +Cc: ioquatix (Samuel Williams)
Issue #20864 has been updated by ioquatix (Samuel Williams).
I checked C interface in `error.h` and we end up having a lot of variants:
- `rb_warn`
- `rb_warning`
- `rb_category_warn`
- `rb_compile_warn`
- `rb_category_compile_warn`
etc.
One idea is this:
```
struct rb_warning_arguments {
rb_warning_category_t category;
VALUE extra;
// others
};
void rb_warning(struct rb_warning_arguments, const char *fmt, ...);
```
For things like:
```
void rb_category_compile_warn(rb_warning_category_t cat, const char *file, int line, const char *fmt, ...);
```
I imagine that `cat`, `file` and `line` are all useful structured data.
----------------------------------------
Feature #20864: Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
https://bugs.ruby-lang.org/issues/20864#change-110465
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
## Background
Structured logging is a practice that organizes log data in a consistent, easily parseable format. Unlike traditional unstructured logs, which often consist of plain text entries, structured logs format information in key-value pairs or structured data formats such as JSON. This allows for better automation, searchability, and analysis of log data.
In Ruby, `Kernel#warn` is extremely useful, especially because there is a mechanism for loggers to redirect warnings using the `Warning` module. However, it is difficult to generate structured logs with `Kernel#warn` as all the positional arguments are converted to a single string, and arbitrary keyword options are rejected.
As a consequence, code like this is not possible:
```ruby
begin
...
rescue => error
warn "Something went wrong!", exception: error
end
```
It is very desirable to have a standard interface in Ruby for emitting structured warnings.
## Proposal
I'd like to extend the current implementation to allow all options to be forwarded to `Warning.warn`. This would allow us to add more details to warnings and emit structured logs using `Warning.warn`.
A simple example of the proposed interface:
```ruby
module Kernel
def warn(*arguments, uplevel: ..., **options)
# Existing processing of arguments -> message
::Warning.warn(message, **options)
end
end
```
Current behaviour rejects any unknown options:
```
warn("Oops", exception: error)
# => <internal:warning>:50:in `warn': unknown keyword: :exception (ArgumentError)
```
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
Regarding the default behaviour, I propose no changes.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119790] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (8 preceding siblings ...)
2024-11-07 1:26 ` [ruby-core:119788] " ioquatix (Samuel Williams) via ruby-core
@ 2024-11-07 5:56 ` ko1 (Koichi Sasada) via ruby-core
2024-11-07 6:09 ` [ruby-core:119791] " ioquatix (Samuel Williams) via ruby-core
` (2 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: ko1 (Koichi Sasada) via ruby-core @ 2024-11-07 5:56 UTC (permalink / raw)
To: ruby-core; +Cc: ko1 (Koichi Sasada)
Issue #20864 has been updated by ko1 (Koichi Sasada).
Compatibility issues for user defined `warn` methods?
```
$ ~/gem-codesearch/gem-codesearch 'def warn\b' | wc -l
3837
```
----------------------------------------
Feature #20864: Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
https://bugs.ruby-lang.org/issues/20864#change-110473
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
## Background
Structured logging is a practice that organizes log data in a consistent, easily parseable format. Unlike traditional unstructured logs, which often consist of plain text entries, structured logs format information in key-value pairs or structured data formats such as JSON. This allows for better automation, searchability, and analysis of log data.
In Ruby, `Kernel#warn` is extremely useful, especially because there is a mechanism for loggers to redirect warnings using the `Warning` module. However, it is difficult to generate structured logs with `Kernel#warn` as all the positional arguments are converted to a single string, and arbitrary keyword options are rejected.
As a consequence, code like this is not possible:
```ruby
begin
...
rescue => error
warn "Something went wrong!", exception: error
end
```
It is very desirable to have a standard interface in Ruby for emitting structured warnings.
## Proposal
I'd like to extend the current implementation to allow all options to be forwarded to `Warning.warn`. This would allow us to add more details to warnings and emit structured logs using `Warning.warn`.
A simple example of the proposed interface:
```ruby
module Kernel
def warn(*arguments, uplevel: ..., **options)
# Existing processing of arguments -> message
::Warning.warn(message, **options)
end
end
```
Current behaviour rejects any unknown options:
```
warn("Oops", exception: error)
# => <internal:warning>:50:in `warn': unknown keyword: :exception (ArgumentError)
```
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
Regarding the default behaviour, I propose no changes.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119791] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (9 preceding siblings ...)
2024-11-07 5:56 ` [ruby-core:119790] " ko1 (Koichi Sasada) via ruby-core
@ 2024-11-07 6:09 ` ioquatix (Samuel Williams) via ruby-core
2024-11-08 9:00 ` [ruby-core:119837] " shyouhei (Shyouhei Urabe) via ruby-core
2024-11-08 12:26 ` [ruby-core:119841] " Eregon (Benoit Daloze) via ruby-core
12 siblings, 0 replies; 14+ messages in thread
From: ioquatix (Samuel Williams) via ruby-core @ 2024-11-07 6:09 UTC (permalink / raw)
To: ruby-core; +Cc: ioquatix (Samuel Williams)
Issue #20864 has been updated by ioquatix (Samuel Williams).
For previous discussion including compatibility, see <https://bugs.ruby-lang.org/issues/17122>
----------------------------------------
Feature #20864: Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
https://bugs.ruby-lang.org/issues/20864#change-110474
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
## Background
Structured logging is a practice that organizes log data in a consistent, easily parseable format. Unlike traditional unstructured logs, which often consist of plain text entries, structured logs format information in key-value pairs or structured data formats such as JSON. This allows for better automation, searchability, and analysis of log data.
In Ruby, `Kernel#warn` is extremely useful, especially because there is a mechanism for loggers to redirect warnings using the `Warning` module. However, it is difficult to generate structured logs with `Kernel#warn` as all the positional arguments are converted to a single string, and arbitrary keyword options are rejected.
As a consequence, code like this is not possible:
```ruby
begin
...
rescue => error
warn "Something went wrong!", exception: error
end
```
It is very desirable to have a standard interface in Ruby for emitting structured warnings.
## Proposal
I'd like to extend the current implementation to allow all options to be forwarded to `Warning.warn`. This would allow us to add more details to warnings and emit structured logs using `Warning.warn`.
A simple example of the proposed interface:
```ruby
module Kernel
def warn(*arguments, uplevel: ..., **options)
# Existing processing of arguments -> message
::Warning.warn(message, **options)
end
end
```
Current behaviour rejects any unknown options:
```
warn("Oops", exception: error)
# => <internal:warning>:50:in `warn': unknown keyword: :exception (ArgumentError)
```
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
Regarding the default behaviour, I propose no changes.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119837] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (10 preceding siblings ...)
2024-11-07 6:09 ` [ruby-core:119791] " ioquatix (Samuel Williams) via ruby-core
@ 2024-11-08 9:00 ` shyouhei (Shyouhei Urabe) via ruby-core
2024-11-08 12:26 ` [ruby-core:119841] " Eregon (Benoit Daloze) via ruby-core
12 siblings, 0 replies; 14+ messages in thread
From: shyouhei (Shyouhei Urabe) via ruby-core @ 2024-11-08 9:00 UTC (permalink / raw)
To: ruby-core; +Cc: shyouhei (Shyouhei Urabe)
Issue #20864 has been updated by shyouhei (Shyouhei Urabe).
I also want something like this. In order to move things forward we have to clear some points:
- There could be programs that redefine `Kernel#warn` on the fly in the wild. They might suffer from the API change. About the only thing we can do here is let them die miserably. Is it an acceptable choice? (I guess so though)
- The other issue is `Warning.warn` side. We already have it, which also doesn't expect unknown arguments for now. We acknowledge that Warning.warn could take exactly one argument (per https://bugs.ruby-lang.org/issues/17122#note-15). We are checking if it takes `category:` every time now. If we were to pass arbitrary keyword arguments to Warning.warn is the check... kind of possible in practice?
These two might be related, but are not the same thing.
----------------------------------------
Feature #20864: Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
https://bugs.ruby-lang.org/issues/20864#change-110525
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
## Background
Structured logging is a practice that organizes log data in a consistent, easily parseable format. Unlike traditional unstructured logs, which often consist of plain text entries, structured logs format information in key-value pairs or structured data formats such as JSON. This allows for better automation, searchability, and analysis of log data.
In Ruby, `Kernel#warn` is extremely useful, especially because there is a mechanism for loggers to redirect warnings using the `Warning` module. However, it is difficult to generate structured logs with `Kernel#warn` as all the positional arguments are converted to a single string, and arbitrary keyword options are rejected.
As a consequence, code like this is not possible:
```ruby
begin
...
rescue => error
warn "Something went wrong!", exception: error
end
```
It is very desirable to have a standard interface in Ruby for emitting structured warnings.
## Proposal
I'd like to extend the current implementation to allow all options to be forwarded to `Warning.warn`. This would allow us to add more details to warnings and emit structured logs using `Warning.warn`.
A simple example of the proposed interface:
```ruby
module Kernel
def warn(*arguments, uplevel: ..., **options)
# Existing processing of arguments -> message
::Warning.warn(message, **options)
end
end
```
Current behaviour rejects any unknown options:
```
warn("Oops", exception: error)
# => <internal:warning>:50:in `warn': unknown keyword: :exception (ArgumentError)
```
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
Regarding the default behaviour, I propose no changes.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
* [ruby-core:119841] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
` (11 preceding siblings ...)
2024-11-08 9:00 ` [ruby-core:119837] " shyouhei (Shyouhei Urabe) via ruby-core
@ 2024-11-08 12:26 ` Eregon (Benoit Daloze) via ruby-core
12 siblings, 0 replies; 14+ messages in thread
From: Eregon (Benoit Daloze) via ruby-core @ 2024-11-08 12:26 UTC (permalink / raw)
To: ruby-core; +Cc: Eregon (Benoit Daloze)
Issue #20864 has been updated by Eregon (Benoit Daloze).
>From the experience of mspec or ruby/spec which used to override `Kernel#warn` it's very confusing and messy, and I removed that.
Overriding `Kernel#warn` typically also breaks `uplevel` handling and might also break the recursion check (some people user `super` in `Warning.warn`).
So I think one should never override Kernel#warn, especially since we have `Warning.warn` now as the designated extension point.
I wonder if we really need structured warnings.
Warnings at least currently seem primarily meant for developers, and I don't really see the value for structured warnings there.
So I think it would be good to have a concrete example where this would be useful and it's not trivially worked around.
I would think if we want structured something it would make more sense for logging and for exceptions.
Warnings are not logging.
----------------------------------------
Feature #20864: Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn`.
https://bugs.ruby-lang.org/issues/20864#change-110531
* Author: ioquatix (Samuel Williams)
* Status: Open
----------------------------------------
## Background
Structured logging is a practice that organizes log data in a consistent, easily parseable format. Unlike traditional unstructured logs, which often consist of plain text entries, structured logs format information in key-value pairs or structured data formats such as JSON. This allows for better automation, searchability, and analysis of log data.
In Ruby, `Kernel#warn` is extremely useful, especially because there is a mechanism for loggers to redirect warnings using the `Warning` module. However, it is difficult to generate structured logs with `Kernel#warn` as all the positional arguments are converted to a single string, and arbitrary keyword options are rejected.
As a consequence, code like this is not possible:
```ruby
begin
...
rescue => error
warn "Something went wrong!", exception: error
end
```
It is very desirable to have a standard interface in Ruby for emitting structured warnings.
## Proposal
I'd like to extend the current implementation to allow all options to be forwarded to `Warning.warn`. This would allow us to add more details to warnings and emit structured logs using `Warning.warn`.
A simple example of the proposed interface:
```ruby
module Kernel
def warn(*arguments, uplevel: ..., **options)
# Existing processing of arguments -> message
::Warning.warn(message, **options)
end
end
```
Current behaviour rejects any unknown options:
```
warn("Oops", exception: error)
# => <internal:warning>:50:in `warn': unknown keyword: :exception (ArgumentError)
```
I don't have an opinion about the implementation, but I wanted to get feedback on the interface.
Regarding the default behaviour, I propose no changes.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-11-08 12:26 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-11-05 11:21 [ruby-core:119726] [Ruby master Feature#20864] Support `error:` keyword to `Kernel#warn` ioquatix (Samuel Williams) via ruby-core
2024-11-05 12:26 ` [ruby-core:119727] " zverok (Victor Shepelev) via ruby-core
2024-11-05 13:47 ` [ruby-core:119729] " Eregon (Benoit Daloze) via ruby-core
2024-11-05 15:04 ` [ruby-core:119734] " ioquatix (Samuel Williams) via ruby-core
2024-11-05 16:14 ` [ruby-core:119742] " Dan0042 (Daniel DeLorme) via ruby-core
2024-11-05 22:05 ` [ruby-core:119754] " ioquatix (Samuel Williams) via ruby-core
2024-11-06 22:26 ` [ruby-core:119785] [Ruby master Feature#20864] Allow `Kernel#warn` to accept `**options` and pass these to `Warning.warn` ioquatix (Samuel Williams) via ruby-core
2024-11-06 23:38 ` [ruby-core:119786] " jeremyevans0 (Jeremy Evans) via ruby-core
2024-11-06 23:53 ` [ruby-core:119787] " ioquatix (Samuel Williams) via ruby-core
2024-11-07 1:26 ` [ruby-core:119788] " ioquatix (Samuel Williams) via ruby-core
2024-11-07 5:56 ` [ruby-core:119790] " ko1 (Koichi Sasada) via ruby-core
2024-11-07 6:09 ` [ruby-core:119791] " ioquatix (Samuel Williams) via ruby-core
2024-11-08 9:00 ` [ruby-core:119837] " shyouhei (Shyouhei Urabe) via ruby-core
2024-11-08 12:26 ` [ruby-core:119841] " Eregon (Benoit Daloze) via ruby-core
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).